/* ===================================
   Yatra Homepage - Travel Themed Colors (Matching Pricing Page)
   =================================== */

/* Base Styles */
.homepage {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: #fff;
}

/* Travel-themed Color Variables - Matching Pricing Page */
:root {
    --primary-blue: #3b82f6;      /* Blue from pricing page */
    --secondary-blue: #1e40af;    /* Darker blue from pricing page */
    --accent-orange: #f59e0b;     /* Golden orange from pricing page */
    --accent-green: #10b981;      /* Success green */
    --accent-yellow: #fbbf24;     /* Golden yellow from pricing page */
    --dark-blue: #1e3a8a;         /* Deep blue from pricing page */
    --light-blue: #f1f5f9;        /* Light blue from pricing page */
    --success-green: #059669;     /* Success green */
    --warning-orange: #dc2626;    /* Warning red */
    --text-dark: #1e293b;         /* Dark text from pricing page */
    --text-light: #64748b;        /* Light text from pricing page */
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: white;
    padding: 200px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
    color: var(--accent-yellow);
}

.hero-trust {
    margin-top: 30px;
    text-align: center;
}

.hero-trust p {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 15px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    display: block;
    color: var(--accent-yellow);
    font-size: 2.8rem;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-yellow);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.ct-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-button.primary {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    border-color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.ct-button.primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.ct-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.ct-button.secondary:hover {
    background: white;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.ct-button.tertiary {
    background: #f8fafc;
    color: #1e3a8a;
    border-color: #e2e8f0;
}

.ct-button.tertiary:hover {
    background: #e2e8f0;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.1);
}

.ct-button.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Problem/Solution Section */
.problem-solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.column-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.problem-column .column-title {
    color: #dc2626;
}

.solution-column .column-title {
    color: #059669;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.problem-item {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: 12px;
}

.problem-item:hover {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.solution-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
}

.solution-item:hover {
    background: #c6f6d5;
    transform: translateX(-5px);
}

.problem-icon,
.solution-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon {
    background: #dc3545;
    color: white;
}

.solution-icon {
    background: #28a745;
    color: white;
}

.problem-content h4,
.solution-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.problem-content h4 {
    color: var(--warning-orange);
}

.solution-content h4 {
    color: var(--success-green);
}

.problem-content p,
.solution-content p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* Social Proof Section */
.social-proof-section {
    padding: 100px 0;
    background: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 4px;
}

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

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.badge-icon {
    color: #28a745;
}

.badge-text {
    font-weight: 500;
    color: #333;
}

/* Extensions Section */
.extensions-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.extensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.extension-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.extension-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.extension-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.extension-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.extensions-cta {
    text-align: center;
}

/* Competitive Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: #1a365d;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th.yatra-highlight {
    background: #ff6b35;
}

.comparison-table td.highlight {
    background: #fff3cd;
    color: #856404;
    font-weight: 600;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

.comparison-cta {
    text-align: center;
}

/* Customer Success Stories Section */
.success-stories-section {
    padding: 100px 0;
    background: white;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.success-story {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.story-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 4px;
}

.story-info p {
    color: #666;
    font-size: 0.9rem;
}

.story-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: block;
    margin-bottom: 0;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.faq-toggle {
    display: none;
}

.faq-answer {
    padding: 20px 0 0 0;
    overflow: visible;
}

.faq-answer p {
    color: #475569;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.faq-item p {
    color: #475569;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.final-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-icon {
    color: #ffd700;
}

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

.cta-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .hero-section {
        padding: 180px 0 90px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .highlight {
        font-size: 2.4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .success-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .extensions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-stats {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .ct-button {
        width: 100%;
        max-width: 300px;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .column-title {
        font-size: 1.6rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .extensions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 25px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .final-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .final-cta-content > p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title .highlight {
        font-size: 1.6rem;
        margin-top: 8px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        gap: 20px;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-badges {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .ct-button.large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .final-cta-content > p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .ct-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .ct-button.large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .feature-card,
    .success-story,
    .testimonial,
    .extension-card {
        padding: 20px;
    }
    
    .problem-item,
    .solution-item {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}
