:root {
    /* Modern industrial color scheme */
    --primary: #000000;
    --secondary: #991829;
    --accent: #991829;
    --background: #f8f9fa;
    --text: #000000;
    --text-light: #ffffff;
    --text-dark: #272727;
    --button-primary: #991829;/*#dc1818;*/
    --button-secondary: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-dark: linear-gradient(135deg, #f8f9fa, #e0e0e0);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Improve text readability */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Ensure proper heading hierarchy */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
    z-index: 1000; /* Updated z-index */
    top: 0;
    left: 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-links a:hover {
    color: var(--accent);
    background: rgba(153, 24, 41, 0.05);
}

.nav-links .nav-cta {
    background: var(--accent);
    color: var(--text-light);
    animation: pulse 2s infinite;
}

.nav-links .nav-cta:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Später durch ein mobiles Menü ersetzen */
    }
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: transparent;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Header-Höhe + extra Padding */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.3) 100%);
    z-index: 0;
}

.hero-background {
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0; /* Changed from right: 0 */
    width: 100%; /* Changed from 50% */
    height: 100vh;
    z-index: 0; /* Changed from -1 to 0 */
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.95) 100%);
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    content: url('./images/hero-fallback.jpg');
}

.hero-split {
    position: relative;
    z-index: 2;  /* Place content above background */
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    gap: 2rem;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;  /* Ensure content is above the overlay */
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.8)
    );
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    background: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-stats .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-stats .stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var (--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
}

.hero-visual {
    display: none;
}

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

.feature-indicators {
    position: absolute;
    inset: 0;
}

.feature-dot {
    position: absolute;
    top: var(--top);
    left: var(--left);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

.feature-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.feature-dot::after {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-dot:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button, .secondary-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.cta-button {
    background: var(--button-primary);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(220, 24, 24, 0.3);
    text-decoration: none; /* Add this */
    display: inline-block; /* Add this */
}

.cta-button a {
    
    text-decoration: none; /* Add this */
    
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(153, 24, 41, 0.3);
    background: var(--text-dark);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    background: var(--button-secondary);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    margin-left: 1rem;
}

.secondary-button:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1.1rem;
}

.hero-description {
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.8;
    font-size: 1.2rem;
}

.features, .benefits {
    padding: 5rem 2rem;
    max-width: 100%;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

/* Remove old feature-img styles */
.feature-img {
    display: none;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    padding: 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-list li i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-right: 1rem;
    min-width: 24px;
    text-align: center;
}

/* Remove the old ::before pseudo-element */
.benefits-list li::before {
    display: none;
}

.benefits-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.contact {
    background: rgba(255, 255, 255, 0.95);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 2; /* Updated z-index */
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.contact-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-item:hover::before {
    transform: scaleX(1);
    background: var(--text-dark);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent);
}

.contact-item h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.contact-item address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-button {
    background: var(--button-primary);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.specifications {
    background: var(--primary);
    color: white;
    padding: 5rem 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.spec-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: var(--text-dark);
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-button, .secondary-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-background img {
        object-position: right center;
        transform: scale(0.6); /* Slightly zoom in to ensure full coverage */
        
    }

    .hero {
        position: relative;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.7)
        );
    }

    .hero-content {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        /*backdrop-filter: blur(5px);*/
        margin-top: 5rem; /* Add space for the fixed header */
    }
}

/* ...existing code until footer... */

.footer {
    position: relative;
    z-index: 2;
    background: var(--text-dark); /* Änderung von var(--primary) zu var(--text-dark) */
    padding: 2rem;
    color: var(--text-light);
}

.footer-nav {
    position: relative;
    z-index: 3;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Update navigation links hover state */
.nav-links a:hover {
    color: var(--accent);
}

/* Make sure all interactive links follow the same color scheme */
a {
    color: var(--accent);
    transition: color 0.3s ease;
    text-decoration: underline;
}

a:hover, a:focus {
    text-decoration: none;
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ...rest of existing code... */

/* ...existing code... */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark); /* Änderung von var(--primary) zu var(--text-dark) */
    color: var(--text-light);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-banner__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner__button {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__button--accept {
    background: var(--accent);
    color: white;
    border: none;
}

.cookie-banner__button--decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner__button {
        width: 100%;
    }
}

/* Remove any old cookie consent styles */

/* ...rest of existing code... */

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner__info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ...rest of existing code... */

/* ...existing code... */

.benefits {
    background: var(--gradient-dark);
    padding: 8rem 0; /* Remove horizontal padding */
    position: relative;
    width: 100vw; /* Full viewport width */
    margin-left: 50%;
    transform: translateX(-50%); /* Center the section */
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Move horizontal padding to wrapper */
}

.benefits-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var (--text-dark);
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.benefits-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0;
    padding: 1.5rem;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
}

.benefits-list li i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-right: 1rem;
    min-width: 24px;
    text-align: center;
}

/* Remove the old ::before pseudo-element */
.benefits-list li::before {
    display: none;
}

.benefits-list li:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: white;
}

@media (max-width: 768px) {
    .benefits {
        padding: 4rem 0;
    }

    .benefits-wrapper {
        padding: 0 1rem;
    }
    
    .benefits-container {
        padding: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        padding: 1rem;
    }
}

/* ...rest of existing code... */

/* Improve text readability for SEO */
p, li, h1, h2, h3 {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure proper contrast ratios */
.hero-content, .feature-card p, .benefits-list li {
    color: rgba(0, 0, 0, 0.87);
}

/* Add ARIA support styles */
[aria-hidden="true"] {
    display: none;
}

/* Improve focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ...rest of existing code... */

/* ...existing code... */

.process {
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2; /* Updated z-index */
}

.process-timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent);
    opacity: 0.3;
}

.process-step {
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 80%;
    max-width: 600px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid white;
}

.step-details {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.step-details i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-details li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.step-time {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-block;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .step-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .step-number {
        left: 30px;
        transform: translateX(-50%);
    }
}

/* Update hero section colors for engineering theme */
:root {
    --primary: #991829;
    --secondary: #962f2f;
    --accent: #962f2f;
    /* ...existing variables... */
}

/* ...existing code... */

/* ...existing code... */

.faq {
    padding: 8rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2; /* Updated z-index */
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.faq-wrapper {
    max-width: 900px; /* Reduziert von 1200px für bessere Lesbarkeit */
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.faq-column {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.faq-column h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.faq-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Benefits Styling */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--accent);
    font-size: 1.75rem;
    margin-right: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.benefit-content p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Questions Styling - Updated */
.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.faq-question h4 {
    margin: 0;
    padding-right: 2rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.faq-question i {
    transform: rotate(0);
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.faq-answer {
    background: white;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.faq-answer p, .faq-answer ul {
    margin: 0;
    padding: 0;
}

.faq-answer li {
    margin: 0.75rem 0;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-answer li i {
    color: var(--accent);
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* Remove the old ::before pseudo-element */
.faq-answer li::before {
    display: none;
}

.faq-answer li {
    margin: 0.75rem 0;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-answer li i {
    color: var(--accent);
    font-size: 1rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* Remove the old ::before pseudo-element */
.faq-answer li::before {
    display: none;
}

.faq-item.active {
    box-shadow: var(--shadow);
}

.faq-item.active .faq-question {
    background: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq {
        padding: 4rem 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item i {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* ...existing code... */

/* ...existing code... */

.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.process-cta .cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(153, 24, 41, 0.2);
}

.process-cta .cta-button i {
    margin-right: 0.75rem;
    font-size: 1.1em;
}

.process-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(153, 24, 41, 0.3);
    background: var(--text-dark);
    color: var(--text-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .process-cta {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .process-cta .cta-button {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ...existing code... */

/* ...existing code... */

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transform: translateX(120px);
}

/* Ensure content is above video */
main {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Update section backgrounds to be semi-transparent */
.process, .faq, .features, .contact {
    background: rgba(255, 255, 255, 0.92); /* Updated background */
    position: relative;
    z-index: 2;
}

/* ...existing code... */

/* ...existing code... */

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: var(--background);
    background-color: #f8f9fa; /* Fallback color */
}

/* Add styles for breadcrumbs */
.breadcrumbs {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    margin-top: 60px;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--accent);
}

/* Add cross-browser compatibility */
@supports not (backdrop-filter: blur(5px)) {
    .header,
    .hero-content {
        background: rgba(255, 255, 255, 0.95);
    }
}

/* ...existing code... */

/* Add after existing sections */

.references {
    padding: 8rem 2rem;
    background: var(--background);
}

.references h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.references h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.reference-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.reference-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.reference-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reference-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.reference-content p {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.reference-details {
    list-style: none;
    padding: 0;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.reference-details li {
    margin: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.reference-details i {
    color: #4CAF50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reference-cta {
    text-align: center;
    margin-top: 3rem;
}

.reference-cta .secondary-button {
    margin: 0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-color: var(--accent);
    color: var(--accent);
}

.reference-cta .secondary-button:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .references {
        padding: 4rem 1rem;
    }

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

    .reference-card img {
        height: 200px;
    }

    .reference-content {
        padding: 1.5rem;
    }

    .reference-content h3 {
        font-size: 1.3rem;
    }

    .reference-details {
        padding-top: 1rem;
    }
}

/* ...rest of existing code... */

.references {
    padding: 8rem 2rem;
    background: var(--background);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

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

.reference-content {
    padding: 2rem;
}

.reference-details {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.reference-details li {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.reference-details i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.quality {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.quality-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.savings {
    padding: 8rem 2rem;
    background: var(--text-dark);
    color: white;
}

.savings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.savings-item {
    text-align: center;
    padding: 2rem;
}

.savings-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.guarantee {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.guarantee-list i {
    color: #4CAF50;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .reference-grid,
    .quality-grid,
    .savings-container {
        grid-template-columns: 1fr;
    }
    
    .guarantee-list {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */

/* ...existing code... */

.technology {
    padding: 8rem 2rem;
    background: var(--gradient-dark);
    position: relative;
    z-index: 2;
}

.technology h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.technology h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.technology-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.technology-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tech-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
    font-size: 1.1rem;
}

.tech-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .technology {
        padding: 4rem 1rem;
    }
    
    .technology-grid {
        gap: 1.5rem;
    }
    
    .technology-card {
        padding: 2rem 1.5rem;
    }
}

/* Remove the old savings section styles */
/* ...existing code... */

/* ...existing code... */

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tech-tag {
    background: rgba(153, 24, 41, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(153, 24, 41, 0.2);
}

.reference-details li {
    margin: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.reference-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var (--text-dark);
}

.reference-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1.5rem;
}

/* ...existing code... */

/* ...existing code... */

.reference-features {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.reference-features h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.reference-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    color: var(--text);
}

.reference-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ...existing code... */

/* ...existing code... */

.system-variants {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.variant-tag {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ...existing code... */

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-trigger i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(-180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.dropdown-content a:hover {
    background: rgba(153, 24, 41, 0.05);
    color: var(--accent);
    transform: translateX(5px);
}

/* Mobile Navigation Adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-trigger i {
        display: none;
    }

    .dropdown-content a {
        padding: 0.5rem 1rem;
        margin-left: 1rem;
    }
}

/* ...existing code... */

/* Scroll-triggered animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth section transitions */
section {
    transition: opacity 0.4s ease-out;
}

/* Enhanced button interactions */
.cta-button, .secondary-button {
    /* ...existing styles... */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(153, 24, 41, 0.3);
}

/* Quality items animation */
.quality-item {
    /* ...existing styles... */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Technology cards interaction */
.technology-card {
    /* ...existing styles... */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.technology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* FAQ animations */
.faq-question {
    /* ...existing styles... */
    transition: all 0.3s ease;
}

.faq-answer {
    /* ...existing styles... */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ...existing code... */

/* ...existing code... */

.about {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.95); /* Updated to match other sections */
    position: relative;
    z-index: 2; /* Added to ensure proper stacking */
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white; /* Added solid white background for content */
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-intro {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-story {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-story p {
    line-height: 1.6;
}

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

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.highlight-item i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.highlight-item p {
    color: var(--color-text);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */

.maps-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.maps-button:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.maps-button i {
    font-size: 1.1rem;
}

/* ...existing code... */

/* ...existing code... */

.hero-carousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    background: var(--background);
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: auto;
    margin-top: 200px;
    margin-right: 100px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-indicators {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
    }

    .carousel-indicators {
        bottom: 1rem;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ...existing code... */

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease-in-out;
}

.burger-menu.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a {
        padding: 1rem;
        width: 100%;
        text-align: left;
    }

    .nav-links .dropdown {
        width: 100%;
    }

    .nav-links .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links .nav-cta {
        margin-top: 1rem;
        text-align: center;
    }

    /* Add backdrop when menu is open */
    .menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-backdrop.active {
        display: block;
    }
}

/* ...existing code... */
