:root {
    /* Modern industrial color scheme */
    --primary: #272727;
    --secondary: #800c12;
    --accent: #b40018;
    --background: #f8f9fa;
    --text: #2c3e50;
    --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;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow);
    z-index: 1000;
    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 a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: grid;
    grid-template-columns: 40% 60%; /* Left column 40%, Right column 60% */
    margin-top: 60px; /* Space for header */
}

.hero-background {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Full height minus header */
    order: 2; /* Move to right column */
}

.hero-split {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
    background: var(--background);
    display: flex;
    align-items: center;
    order: 1; /* Move to left column */
}

/* Ensure canvas fills its container */
#viewerCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr; /* Stack on mobile */
        grid-template-rows: auto 1fr;
    }
    
    .hero-background {
        height: 60vh;
        order: 1; /* Viewer first on mobile */
    }
    
    .hero-split {
        order: 2; /* Content second on mobile */
    }
}

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

/* Ensure that the hero-background iframe can receive interactions */
.hero-background iframe {
    pointer-events: auto;
    z-index: 1;
}

/* Optional: allow clicks on hero content buttons if needed */
.hero-split .hero-content {
    pointer-events: auto;
}

/* Re-enable pointer events on interactive elements within hero-split */
.hero-split .hero-content button,
.hero-split .hero-content a {
    pointer-events: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    color: var(--text-dark);
    
}

.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);
}

.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 ease;
    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(-2px);
    box-shadow: 0 6px 20px rgba(220, 24, 24, 0.4);
}

.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: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.benefits-list li {
    margin-bottom: 0;
    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; /* Keep only one padding declaration */
}

.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; /* Remove the arrow content completely since we're using icons */
}

.contact {
    background: var(--gradient-dark);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.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);
}

.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);
}

.representatives {
    margin: 4rem auto 0;
    max-width: 1200px;
}

.representatives h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
}

.representatives-intro {
    text-align: center;
    margin: 1rem auto 2rem;
    max-width: 640px;
    color: var(--text);
    font-size: 1.1rem;
}

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

.representative-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.representative-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.representative-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.representative-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.representative-link {
    display: block;
    color: var(--accent);
    text-decoration: none;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    word-break: break-word;
}

.representative-link:hover {
    color: var(--secondary);
}

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

    .representatives {
        margin-top: 3rem;
    }

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

@media (max-width: 640px) {
    .representatives-grid {
        grid-template-columns: 1fr;
    }
}

.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(--accent);
    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);
    }
}

@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 */
    }

    .hero-background {
        height: 50vh; /* Less height on mobile */
    }
}

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

.footer {
    background: var(--primary);
    padding: 2rem;
    color: var(--text-light);
}

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

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

.footer-info a:hover {
    color: var(--text-light);
    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;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    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); /* Remove extra space between var and parenthesis */
    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-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    list-style: 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, h3 {
    max-width: 70ch; /* Keep reasonable line length for these elements */
}

/* Reset max-width for elements that need to stretch across containers */
.hero h1, .hero h2, 
.benefits h2, .specifications h2,
.faq h2, 
.gallery h2,
.add-ons h2, .contact-info h2,
.benefits-list li, .contact-grid {
    max-width: none;
}

/* 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... */

.gallery {
    text-align: center;
    padding: 2rem;
    background: var(--background);
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery-item {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.gallery-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2100;
}

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

.add-ons {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

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

.add-on-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.add-on-image {
    text-align: center;
}

.addon-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.add-on-content {
    padding: 1rem;
}

.add-on-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var (--accent);
}

.tech-specs-table {
    margin-top: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.tech-specs-table h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tech-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs-table th, .tech-specs-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.tech-specs-table th {
    text-align: left;
    color: var(--accent);
}

.mini-gallery {
    margin-top: 4rem;
    text-align: center;
}

.mini-gallery h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .add-on-container {
        grid-template-columns: 1fr;
    }
    
    .mini-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Add these styles at the end of your CSS file */

/* FAQ Styles */
.faq {
    padding: 5rem 2rem;
    background: var(--background);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    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-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px; /* Allow more room for longer answers */
}

/* Enhanced CTA Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow);
    z-index: 10;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

/* Fix hover vs click functionality for mobile */
@media (hover: hover) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* For mobile/touch devices */
.dropdown.active .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
        margin-top: 1rem;
    }
    
    .dropdown-content {
        width: 100%;
    }
}
