:root {
    /* Colores principales de Novamento */
    --electric-blue: #0077FF;
    --soft-coral: #FF688B;
    --light-beige: #F5F5F0;
    --slate-gray: #6D6D6D;
    
    /* Colores antiguos para compatibilidad temporal */
    --primary-color: #0077FF; /* Ahora usa electric-blue */
    --secondary-color: #FF688B; /* Ahora usa soft-coral */
    --accent-color: #FF688B; /* Ahora usa soft-coral */
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-gray: #F5F5F0; /* Ahora usa light-beige */
    --dark-gray: #6D6D6D; /* Ahora usa slate-gray */
    --text-color: #333333;
    --text-light: #6D6D6D; /* Ahora usa slate-gray */
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    
    /* Tipografías */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-beige);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px; /* Altura fija del header */
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav-logo h2 {
    font-family: var(--font-heading);
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.cta-button {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
}

.nav-link.cta-button:hover {
    background: #e67e22;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 70px; /* Compensar el header fijo */
    /* Fondo temporal mientras carga la imagen */
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--soft-coral) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--soft-coral);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-coral);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.cta-primary:hover {
    background: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 126, 34, 0.4);
}

.cta-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-image {
    display: none;
}

.hero-main-image {
    display: none;
}

.hero-graphic {
    display: none;
}

/* Section Styles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
}

.problem-visual {
    margin-bottom: 1.5rem;
}

.problem-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--danger-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon {
    background: linear-gradient(45deg, var(--electric-blue), var(--soft-coral));
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: white;
}

.methodology-header {
    text-align: center;
    margin-bottom: 2rem;
}

.methodology-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.methodology-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Ajustar grid para los 4 elementos de metodología */
@media (min-width: 1200px) {
    .methodology-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.methodology-step {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    position: relative;
}

.methodology-visual {
    margin-bottom: 2rem;
}

.methodology-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
    margin-top: 1rem;
}

.step-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-color);
}

.step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.results .section-title {
    color: white;
}

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

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.result-icon i {
    font-size: 1.5rem;
    color: white;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.result-card p {
    opacity: 0.9;
}

.results-conclusion {
    margin-top: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.case-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-company-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.case-company {
    font-weight: 600;
    color: var(--primary-color);
}

.case-result {
    background: var(--success-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.case-testimonial {
    margin-top: 1.5rem;
}

.testimonial-content blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

/* Comillas eliminadas */

.case-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.author-info strong {
    color: var(--primary-color);
}

.author-info span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

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

.team-member {
    display: flex;
    gap: 2rem;
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.member-image {
    flex-shrink: 0;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.member-info h3 {
    font-family: var(--font-heading);
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    color: white;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.benefit i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.diagnostic-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
}

.cta-button-primary {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button-primary:hover {
    background: #e67e22;
}

.cta-guarantee {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: var(--accent-color);
}

/* Footer */
.footer {
    padding: 50px 0 20px;
    background: var(--dark-gray);
    color: white;
}

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

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-links p,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
}

img[data-src] {
    opacity: 1;
    filter: none;
}

img[data-src].loaded {
    opacity: 1;
    filter: none;
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .faq-answer p {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 400px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }

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

    .hero {
        min-height: 600px; /* Altura fija más manejable en móviles */
        max-height: calc(100vh - 70px);
        padding-top: 70px;
        display: flex;
        align-items: center;
    }
    
    .hero-background {
        object-position: 75% center; /* Mostrar más la parte derecha de la imagen donde están las personas */
    }

    .hero-container {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin: 1rem 0 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

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

    .methodology-grid,
    .results-grid,
    .cases-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }

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

    .case-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .case-company-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .case-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px; /* Altura aún más compacta para móviles pequeños */
        max-height: calc(100vh - 70px);
        padding-top: 70px;
    }
    
    .hero-background {
        object-position: 80% center; /* En móviles pequeños, enfocar aún más en las personas */
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.5); /* Overlay más oscuro para mejor legibilidad del texto */
    }

    .hero-container {
        padding: 1.5rem 1rem;
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1rem 0 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .problem-grid,
    .methodology-grid,
    .results-grid,
    .cases-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* .hero-main-image ya no se usa - imagen ahora es background */

    .problem-image {
        height: 150px;
    }

    .methodology-image {
        height: 200px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    overflow: hidden;
    color: white;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: white;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-text {
    position: absolute;
    left: 70px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 1.6rem;
    }
    
    /* En móviles el botón no cambia de tamaño */
    .whatsapp-float:hover {
        width: 55px;
    }
    
    /* Ocultar completamente el texto en móviles */
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.4rem;
    }
    
    /* En móviles pequeños el botón no cambia de tamaño */
    .whatsapp-float:hover {
        width: 50px;
    }
    
    /* Ocultar completamente el texto en móviles */
    .whatsapp-text {
        display: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

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

.bg-primary {
    background-color: var(--primary-color);
}

.bg-light {
    background-color: var(--light-gray);
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--electric-blue);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-beige);
}

.faq-question i {
    color: var(--soft-coral);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-beige);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--slate-gray);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

 