:root {
    /* Dopple Creative Studio Color Palette */
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000000; /* Black */
    --accent-red: #FF0000; /* Red */
    --accent-blue: #0066CC; /* Blue */
    --accent-pink: #FF69B4; /* Pink */
    --accent-yellow: #FFFF00; /* Yellow */
    --accent-orange: #FFA500; /* Orange */
    --accent-baby-blue: #87CEEB; /* Baby Blue */
    --accent-green: #00FF00; /* Green */
    
    /* Background Colors */
    --background-color: #FFFFFF; /* White */
    --cream-bg: #F5F5DC; /* Cream */
    --light-pink-bg: #FFB6C1; /* Light Pink */
    --paper-texture: #FFFEF7; /* Paper Texture */
    --light-bg: #F5F5DC; /* Warm Beige */
    
    /* Legacy colors for compatibility */
    --text-color: #333333;
    --success-color: #28a745;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-family: 'Arial', sans-serif;
    --border-radius: 8px;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.4;
    background-color: var(--paper-texture);
    letter-spacing: 0.02em;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Header y Navegación */
.header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    padding: 5px 0;
}

.logo {
    height: 60px;
    width: auto;
}

.company-name h1 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 105, 180, 0.1) 25%,
        rgba(0, 102, 204, 0.08) 50%,
        rgba(255, 165, 0, 0.12) 75%,
        rgba(255, 215, 0, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.image-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #555;
}

.price-tag {
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 15px;
    margin: 25px 0;
    display: inline-block;
    text-align: center;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.discount {
    background-color: var(--accent-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.hero-features {
    list-style: none;
    margin: 25px 0;
}

.hero-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.alert-banner {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

/* Botones CTA */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) rotate(0.5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::before {
    left: 100%;
}

/* Botón primario para formularios */
.cta-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    width: auto;
    display: block;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px) rotate(0.5deg);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover::before {
    left: 100%;
}

/* Cómo Funciona Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: rotate(0deg) scale(1.1);
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.upgrade-options {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.upgrade-options h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.option-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.option-card h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.option-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.options-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

/* Beneficios Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    transform: rotate(0.3deg);
}

.benefit-card:nth-child(1) {
    transform: rotate(-0.8deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.benefit-card:nth-child(2) {
    transform: rotate(0.6deg) translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.benefit-card:nth-child(3) {
    transform: rotate(-0.4deg) translateY(5px);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.benefit-card:nth-child(4) {
    transform: rotate(0.7deg);
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

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

.benefit-card:nth-child(1) .benefit-icon {
    animation-delay: 0s;
}

.benefit-card:nth-child(2) .benefit-icon {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation-delay: 1s;
}

.benefit-card:nth-child(4) .benefit-icon {
    animation-delay: 1.5s;
}

.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-size: 5rem;
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(0, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: bold;
    color: var(--secondary-color);
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-size: 2rem;
}

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

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.accordion-content p {
    padding: 20px;
}

.accordion-header.active + .accordion-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Contact Form Section */
.contact {
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Estilos para el input type="file" */
.form-group input[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-upload-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.payment-info {
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
}

.payment-info h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.payment-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .current-price {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    
    form {
        padding: 20px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

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

.hero, .step, .benefit-card, .testimonial, .accordion-item, form {
    animation: fadeIn 0.6s ease-out;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.3s;
}
/* Estilos para la tarjeta destacada de beneficios */
.highlight-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.highlight-card:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Estilos para la lista de temas */
.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: center;
}

.topic-tag {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transform: rotate(-1deg);
}

.topic-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-orange));
    transform: translateY(-3px) rotate(0deg) scale(1.05);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.topic-tag i {
    font-size: 0.9rem;
}

/* Ajuste responsive para la lista de temas */
@media (max-width: 480px) {
    .topics-list {
        flex-direction: column;
        align-items: center;
    }
    
    .topic-tag {
        width: 80%;
    }
}

/* Estilos para la sección de equipo */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

.team-member h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    position: relative;
    padding-bottom: 10px;
}

.team-member h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.team-member p {
    padding: 0 20px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Efecto de brillo en hover */
.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team-member:hover::before {
    left: 120%;
    opacity: 0.3;
}

/* Responsive para la sección de equipo */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .team-photo {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Animación para las tarjetas de equipo */
.team-member {
    animation: fadeIn 0.6s ease-out;
}

.team-member:nth-child(2) {
    animation-delay: 0.2s;
}

.team-member:nth-child(3) {
    animation-delay: 0.4s;
}

.team-member:nth-child(4) {
    animation-delay: 0.6s;
}

.team-member:nth-child(5) {
    animation-delay: 0.8s;
}

/* Estilos para la página Quiénes Somos */
.about-hero {
    background: linear-gradient(rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    padding: 140px 0 60px;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-hero p {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-intro {
    padding: 80px 0;
    background-color: var(--light-bg);
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.2s;
}

.about-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-intro h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-intro p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.team-section {
    padding: 80px 0;
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.4s;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 2rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.6s;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #555;
}

/* Estilos para los enlaces del footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links i {
    font-size: 0.9rem;
}

/* Media queries para la página Quiénes Somos */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 50px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .about-intro-content {
        padding: 30px 20px;
    }
    
    .about-intro h2 {
        font-size: 1.6rem;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-intro h2 {
        font-size: 1.4rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}
/* Estilos para la sección de Servicios */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    transform: rotate(-0.5deg);
}

.service-card:nth-child(1) {
    transform: rotate(1deg);
}

.service-card:nth-child(2) {
    transform: rotate(-0.8deg) translateY(10px);
}

.service-card:nth-child(3) {
    transform: rotate(0.6deg) translateY(-5px);
}

.service-card:nth-child(4) {
    transform: rotate(-0.4deg) translateY(8px);
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 105, 180, 0.03) 0%, transparent 50%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.005) 2px,
        rgba(0, 0, 0, 0.005) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    animation: wiggle 0.8s ease-in-out infinite;
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-header {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.service-header h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.service-title {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-price {
    margin-top: 15px;
}

.service-price .old-price {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-price .current-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.service-price .price-contact {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    background-color: rgba(255, 215, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 3px;
}

.service-guarantee {
    background-color: rgba(40, 167, 69, 0.1);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #2a6f3b;
}

.service-guarantee i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.service-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.service-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.service-note {
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--light-bg);
    padding: 10px 0;
    margin-top: 80px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Webinar-specific CSS overrides */
.webinar-hero {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(0, 102, 204, 0.1) 50%,
        rgba(255, 165, 0, 0.15) 100%
    );
}

.webinar-hero h1 {
    max-width: 800px;
    margin: 0 auto 20px;
    transform: none;
}

.webinar-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.webinar-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    font-size: 1.5rem;
}

.webinar-alert {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 105, 180, 0.1) 100%
    );
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #555;
}

/* Override scattered transforms for webinar page */
.webinar-hero .services-grid,
.webinar-hero .benefits-grid {
    transform: none;
}

.webinar-hero .service-card,
.webinar-hero .benefit-card {
    transform: none;
}

/* Ajustes responsive para la sección de servicios */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card.featured {
        transform: scale(1.03);
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px) scale(1.03);
    }
    
    .webinar-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card.featured {
        transform: scale(1);
        border-width: 3px;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .service-price .current-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-header {
        padding: 20px 15px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* Animaciones para las tarjetas de servicio */
.service-card {
    animation: fadeIn 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Ajustes para el formulario de contacto con selector de servicio */
.form-group select#service-type {
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group select#service-type option {
    padding: 10px;
}

/* Ajustes para la información de pago en el formulario */
.payment-info {
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
}

.payment-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-info p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.payment-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Estilos para preinforme gratis */
.hero-cta {
    margin-top: 30px;
}

.cta-note {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Estilo especial para el servicio gratuito */
.service-card:first-child {
    border: 2px solid #28a745;
}

.service-card:first-child .service-button {
    background-color: #28a745;
    color: white;
}

.service-card:first-child .service-button:hover {
    background-color: #218838;
}

/* Estilos para Próximo Evento y Contador Regresivo */
.coming-soon-banner {
    margin: 20px 0;
    text-align: center;
}

.status-badge {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    display: inline-block;
}

.countdown-container {
    margin: 30px 0;
    text-align: center;
    background-color: var(--paper-texture);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.countdown-container h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-size: 1.4em;
    font-weight: bold;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 15px;
    min-width: 70px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.countdown-number {
    display: block;
    font-size: 2.2em;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9em;
    color: var(--text-color);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-live {
    background-color: var(--success-color);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    font-size: 1.2em;
    font-weight: bold;
}

/* Responsive Design para Contador */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 1.8em;
    }

    .status-badge {
        padding: 6px 16px;
        font-size: 0.8em;
    }
}

.hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Estilos para Política de Privacidad */
.privacy-policy {
    padding: 40px 0;
    background-color: var(--paper-texture);
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.page-header h1 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
}

.last-updated {
    color: var(--text-color);
    font-style: italic;
    font-size: 1em;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 40px;
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.policy-section h2 {
    color: var(--secondary-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    font-weight: bold;
}

.policy-section p {
    margin-bottom: 15px;
    text-align: justify;
    color: var(--text-color);
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.policy-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section ol li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}



/* Responsive para página de privacidad */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 0;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.5em;
    }

    .policy-section h3 {
        font-size: 1.2em;
    }
}

/* Ultra-Advanced SEO & E-E-A-T Optimization 2025 */
.expertise-badge {
    display: block;
    margin-top: 5px;
}

.trust-signal {
    font-size: 0.75em;
    color: var(--success-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* AI Search Optimization */
.ai-searchable {
    position: relative;
}

.ai-searchable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

/* Core Web Vitals Optimization */
.hero img,
.logo {
    contain: layout style paint;
    will-change: auto;
}

/* Performance optimizations */
img {
    loading: lazy;
    decoding: async;
}

img[loading="eager"] {
    loading: eager;
}

/* Local Business Trust Signals */
.local-trust-signals {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    font-size: 0.9em;
    color: var(--text-color);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-indicator i {
    color: var(--success-color);
}

/* Authority Signals */
.authority-badge {
    background: linear-gradient(135deg, var(--primary-color), #FFA500);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    display: inline-block;
    margin: 5px 0;
}

/* Geographic Relevance */
.geo-relevance {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin: 20px 0;
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
}

.geo-relevance h4 {
    margin: 0 0 10px 0;
    color: var(--secondary-color);
}

/* Mobile Performance Enhancements */
@media (max-width: 768px) {
    .expertise-badge {
        text-align: center;
    }

    .trust-signal {
        font-size: 0.7em;
        justify-content: center;
    }

    .local-trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Critical CSS for Above-the-fold */
.critical-content {
    contain: content;
    contain-intrinsic-size: auto 400px;
}

/* Schema.org microdata styling */
[itemscope] {
    position: relative;
}

/* AI Citation Readiness */
.citation-ready {
    background: rgba(0, 102, 204, 0.05);
    border-left: 3px solid var(--accent-blue);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.citation-ready::before {
    content: "🤖 AI-Ready Content";
    font-size: 0.8em;
    color: var(--accent-blue);
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* FAQ Schema Styling */
.faq-schema-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background: var(--light-bg);
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
}

.faq-answer {
    padding: 15px;
    background: var(--background-color);
}
