/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #8b4789;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 0.6rem;
    background: rgba(42, 111, 120, 0.04);
    border-radius: 50px;
    padding: 0.4rem;
    border: 1px solid rgba(42, 111, 120, 0.1);
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 111, 120, 0.25);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(42, 111, 120, 0.2);
}

.lang-btn#lang-en::before {
    content: '🇬🇧';
    font-size: 1.1rem;
}

.lang-btn#lang-is::before {
    content: '🇮🇸';
    font-size: 1.1rem;
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-logo a {
    color: var(--primary-color);
}

.nav-logo a:hover {
    color: var(--secondary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    order: 1;
}

.language-toggle {
    order: 2;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Banner - Full Page */
.hero-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--white);
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

.page-section {
    padding-top: 4rem;
    min-height: calc(100vh - 70px);
}

.page-section h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-section .lead {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-section {
    text-align: center;
    padding: 4rem 0 2rem;
}

.cta-section h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content p {
    text-align: justify;
}

.image-content {
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: translateY(-10px);
}

/* Goal Section */
.goal {
    background: var(--bg-light);
}

.goal-content {
    max-width: 900px;
    margin: 0 auto;
}

.goal-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Sustainability Section */
.sustainability {
    background: var(--white);
}

.sustainability h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sustainability > .container > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.sustainability-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-item ul {
    list-style: none;
    padding: 0;
}

.sustainability-item li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    color: var(--text-light);
}

.sustainability-item li:last-child {
    border-bottom: none;
}

.sustainability-item strong {
    color: var(--text-dark);
}

/* Catalog Section */
.catalog {
    background: var(--bg-light);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.catalog-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(44, 95, 111, 0.1);
    position: relative;
}

.catalog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(44, 95, 111, 0.2);
}

.catalog-item:hover::before {
    transform: scaleX(1);
}

.catalog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

.catalog-content {
    padding: 1.5rem;
}

.catalog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.catalog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Varieties Section - Legacy support */
.varieties {
    background: var(--bg-light);
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.variety-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.variety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.variety-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.variety-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* Restaurants Section */
.restaurants {
    background: var(--white);
}

.restaurants > .container > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.restaurant-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 95, 111, 0.05);
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    padding-top: 0.5rem;
}

/* Legacy FAQ support */
.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* FAQ Page Styles */
.faq-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.faq-nav-link {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.faq-nav-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-section {
    margin: 4rem 0;
    scroll-margin-top: 100px;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.faq-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    font-weight: 500;
}

.contact-visual {
    margin-top: 4rem;
    text-align: center;
}

.contact-image {
    max-width: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    color: var(--white);
    margin: 0;
}

/* Sustainability Hero Split */
.sustainability-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    background: var(--white);
}

.hero-split-container {
    display: grid;
    grid-template-columns: 45% 55%;
    width: 100%;
    min-height: 100vh;
}

.hero-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d7484 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin: 0;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Sustainability Mission */
.sustainability-mission {
    background: var(--bg-light);
    padding: 5rem 0;
}

.mission-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
    font-weight: 400;
}

/* Sustainability Practices */
.sustainability-practices {
    background: var(--white);
    padding: 6rem 0;
}

.sustainability-practices h2 {
    margin-bottom: 4rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.practice-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.practice-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.practice-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Sustainability Local */
.sustainability-local {
    background: var(--bg-light);
    padding: 6rem 0;
}

.sustainability-local h2 {
    margin-bottom: 4rem;
}

.local-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.local-feature {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.local-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.local-feature h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.local-feature p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.image-showcase {
    text-align: center;
    margin-top: 3rem;
}

.showcase-image {
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0 0;
        gap: 0;
        z-index: 998;
    }

    .nav-right.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e8e8e8;
        order: 2;
    }

    .nav-menu li {
        margin: 1.2rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        color: var(--text-dark);
        font-weight: 500;
    }

    .nav-menu a::after {
        display: none;
    }

    .language-toggle {
        justify-content: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
        position: relative;
        margin: 0;
        background: linear-gradient(135deg, rgba(42, 111, 120, 0.08), rgba(42, 111, 120, 0.12));
        border-bottom: 3px solid rgba(42, 111, 120, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        order: 1;
    }

    .lang-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        min-width: 100px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .lang-btn#lang-en::before {
        content: '🇬🇧';
        font-size: 1.4rem;
    }

    .lang-btn#lang-is::before {
        content: '🇮🇸';
        font-size: 1.4rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .varieties-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .page-section h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 0;
    }

    .language-toggle {
        top: 1rem;
        right: 1rem;
    }

    /* Sustainability Hero Responsive */
    .hero-split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 4rem 2rem;
        min-height: 60vh;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-right {
        min-height: 50vh;
    }

    /* Practices Grid Responsive */
    .practices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .local-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-statement {
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .hero-banner {
        height: 70vh;
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .scroll-arrow {
        font-size: 2.5rem;
    }

    .varieties-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .variety-item img {
        height: 150px;
    }

    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .contact-info,
    .restaurant-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-image {
        height: 200px;
    }

    /* Sustainability Hero Mobile */
    .hero-left {
        padding: 3rem 1.5rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .practice-card {
        padding: 2rem;
    }

    .practice-number {
        font-size: 2.5rem;
    }

    .local-feature {
        padding: 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    /* FAQ Page Responsive */
    .faq-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-section h3 {
        font-size: 1.3rem;
    }
}

/* Smooth Transitions */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading State for Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility */
.lang-btn:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .language-toggle {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
