/* 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: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 100;
}

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

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-main-menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 300;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B7355;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: #8B7355;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: #8B7355;
    font-weight: 500;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle .separator {
    color: #8c8c8c;
    font-size: 0.9rem;
}

/* Full Screen Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.nav-overlay-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overlay-link {
    text-decoration: none;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    width: max-content;
    margin: auto;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 1rem 0;
}

.overlay-link:hover {
    color: #8B7355;
    transform: translateX(20px);
}

.overlay-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #8B7355;
    transition: width 0.3s ease;
}

.overlay-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: calc(100vh - 90px);
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* YouTube Background */
.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
}

.youtube-background.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #8B7355;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

#youtube-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Fallback video */
.fallback-video {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: scrollBounce 1s ease-out 0.6s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

/* Sections Grid */
.sections-grid {
    padding: 0;
    background: #000;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.grid-item {
    flex: 1 1 33.333%;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.grid-item:hover .grid-item-background {
    transform: scale(1.1);
}

.grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    transition: background 0.3s ease;
}

.grid-item:hover .grid-item-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.grid-item-content {
    color: white;
    max-width: 400px;
}

.grid-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.grid-item-text {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.grid-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.grid-item:hover .grid-item-title {
    transform: scale(1.33);
}

.grid-item:hover .grid-item-text {
    transform: scale(1.1);
}

/* Section Styles (for Contact and FAQ) */
.section {
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section:nth-child(even) {
    background-color: #f8f8f8;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    color: #333;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Placeholder */
.video-placeholder {
    margin-top: 3rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: black;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.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;
    font-weight: 100;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #ccc;
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #8b7355;
}

.social-link {
    padding: 0.5rem 1rem;
    border: 1px solid #6b5a42;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ccc;
    color: #333;
}

.footer-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-start;
}

.footer-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-icon:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.privacy-policy {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy:hover {
    color: white;
}

.cookie-accept {
    background: #8B7355;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: #6B5B3F;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    height: 100vh;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    background: #fff;
}

/* Problem Page Styles */
.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-stats {
    text-align: center;
    margin-bottom: 4rem;
}

.stat-item {
    display: inline-block;
    margin: 0 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.1rem;
    color: #666;
}

.problem-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.problem-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.aspect {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
}

.aspect h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.aspect p {
    color: #010101;
}

.call-to-action {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    color: #2d2d2d;
    border-radius: 12px;
}

.cta-button {
    display: inline-block;
    background: #8B7355;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #6b5a42;
    transform: translateY(-2px);
}

/* Solution Page Styles */
.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    color: #444040;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.technology-highlights {
    margin: 4rem 0;
}

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

.tech-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #8B7355;
}

.tech-item h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #2d2d2d;
}

/* Product Page Styles */
.product-content {
    max-width: 1000px;
    margin: 0 auto;
}

.product-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.product-components {
    margin: 3rem 0;
}

.component {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.component-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.component-details h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.component-details p {
    color: #010101;
}

.product-specs {
    margin: 4rem 0;
}

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

.spec-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.spec-item h4 {
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.spec-item p {
    color: #1a1a1a;
}

.product-benefits {
    margin: 4rem 0;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.benefit h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.benefit p {
    color: #010101;
}

/* Team Page Styles */
.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.team-members {
    margin: 3rem 0;
}

.team-member {
    display: flex;
    align-items: flex-start;
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.member-photo {
    margin-right: 2rem;
    flex-shrink: 0;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.member-info h3 {
    color: #8B7355;
    margin-bottom: 0.5rem;
}

.member-title {
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.member-expertise {
    margin-top: 1rem;
}

.navbar-space {
    height: 90px;
}

.expertise-tag {
    display: inline-block;
    background: #8B7355;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.team-values {
    margin: 4rem 0;
}

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

.value {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.value h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.method-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.method-details {
    color: #010101;
    flex: 1;
}

.contact-link {
    color: #8B7355;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    margin: 4rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.submit-btn {
    background: #8B7355;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #6b5a42;
}

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

.reason {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.reason h3 {
    color: #8B7355;
    margin-bottom: 1rem;
}

.reason p {
    color: #010101;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    /* Toggle button is now always visible */

    .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Toggle button color change when overlay is active */
.nav-toggle.active .bar {
    background-color: white;
}

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-link.about-us {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    
    .navbar-space {
        height: 70px;
    }

    .section-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
} 