/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #003366;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #f0f8ff;
}

/* Header */
.header {
    background: linear-gradient(135deg, #003366 0%, #4169E1 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.nav-brand span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #87CEEB;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #003366;
    color: white;
    border-color: #003366;
}

.btn-primary:hover {
    background: #004080;
    border-color: #004080;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #003366;
    border-color: #003366;
}

.btn-secondary:hover {
    background: #003366;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #003366;
    border-color: #003366;
}

.btn-outline:hover {
    background: #003366;
    color: white;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem 0;
}

.disclaimer-banner p {
    color: #856404;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.disclaimer-banner a {
    color: #003366;
    text-decoration: underline;
    font-weight: 600;
}

.disclaimer-banner a:hover {
    color: #004080;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border: 2px solid #e6f3ff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #4169E1;
}

.package-card.featured {
    border-color: #003366;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #003366;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
}

.price .currency {
    font-size: 1.2rem;
    color: #666;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
}

.huf-equivalent {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.package-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
}

/* Value Proposition */
.value-proposition {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #003366;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #87CEEB;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #87CEEB;
}

.footer-bottom {
    border-top: 1px solid #4169E1;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #003366 0%, #4169E1 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e6f3ff;
    padding-bottom: 0.5rem;
}

.section h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.section li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #003366;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e6f3ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4169E1;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Company Info */
.company-info {
    background: linear-gradient(135deg, #f8fbff 0%, #e6f3ff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.company-info h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h2 {
    color: #003366;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.legal-content h3 {
    color: #003366;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content strong {
    color: #003366;
}

/* Services Page Specific Styles */
.service-package {
    background: white;
    border: 2px solid #e6f3ff;
    border-radius: 12px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.service-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-package.featured {
    border-color: #003366;
    transform: scale(1.02);
}

.service-package.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.package-header {
    background: linear-gradient(135deg, #003366 0%, #4169E1 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.huf-price {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.package-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.package-content {
    padding: 2rem;
}

.package-content h3 {
    color: #003366;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f8ff;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.educational-focus {
    background: #f8fbff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.educational-focus h4 {
    color: #003366;
    margin-bottom: 1rem;
}

.educational-focus ul {
    list-style: none;
    padding-left: 0;
}

.educational-focus li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.educational-focus li:before {
    content: "📚";
    position: absolute;
    left: 0;
}

.disclaimer-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.disclaimer-note p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.important-disclaimers {
    background: #f8fbff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.important-disclaimers h2 {
    color: #003366;
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: white;
    border: 2px solid #e6f3ff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-box h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disclaimer-box p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Contact Page Specific Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2 {
    color: #003366;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-section h2 {
    color: #003366;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fbff;
    border-radius: 8px;
    border: 1px solid #e6f3ff;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #003366;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-text small {
    color: #666;
    font-size: 0.9rem;
}

.company-info {
    background: #f8fbff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.company-info h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.company-info ul {
    list-style: none;
    padding: 0;
}

.company-info li {
    margin-bottom: 0.5rem;
    color: #555;
}

.response-time {
    background: #e6f3ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4169E1;
}

.response-time h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.response-time p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fbff;
    border-radius: 8px;
    border: 1px solid #e6f3ff;
}

.faq-item h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ffc107;
}

.important-notice h2 {
    color: #856404;
    text-align: center;
    margin-bottom: 1.5rem;
}

.notice-content p {
    color: #856404;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.notice-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages Specific Styles */
.critical-notice {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.critical-notice h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.critical-notice p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e6f3ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        width: fit-content;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .notice-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .services-overview,
    .value-proposition,
    .page-content {
        padding: 2rem 0;
    }

    .package-card,
    .value-item {
        padding: 1.5rem;
    }
}
