/* About Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 5rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Curated Section */
.curated-section {
    padding: 5rem 0;
    background: #ffffff;
}

.curated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.curated-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.curated-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.25rem;
}

.curated-content strong {
    color: #1a202c;
}

/* Stats Box */
.curated-stats {
    display: flex;
    justify-content: center;
}

.stats-box {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

.stats-icon {
    margin-bottom: 1rem;
}

.stats-icon svg {
    width: 48px;
    height: 48px;
    color: #1a202c;
    opacity: 0.8;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.1rem;
    color: #1a202c;
    opacity: 0.8;
}

/* Difference Section */
.difference-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fef9e7 0%, #fef3c7 100%);
}

.difference-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.difference-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.difference-header p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: #1a202c;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a202c;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
}

.btn-cta svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 3.5rem 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .curated-section {
        padding: 3.5rem 0;
    }
    
    .curated-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .curated-content h2 {
        font-size: 1.75rem;
    }
    
    .stats-box {
        padding: 2.5rem 3rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .difference-section {
        padding: 3.5rem 0;
    }
    
    .difference-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-content h2 {
        font-size: 1.5rem;
    }
}
