/* Max Win Spin - About Page Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Content */
.about-content {
    padding: var(--spacing-2xl) 0;
}

.about-intro {
    margin-bottom: var(--spacing-2xl);
}

.about-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-700);
}

/* Values Section */
.about-values {
    margin-bottom: var(--spacing-2xl);
    background: var(--gray-100);
    padding: var(--spacing-2xl) 0;
    border-radius: var(--radius-lg);
}

.about-values h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.value-item {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-item h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.value-item p {
    color: var(--gray-800);
    line-height: 1.6;
    font-weight: 500;
}

/* Team Section */
.about-team {
    margin-bottom: var(--spacing-2xl);
}

.about-team h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.about-team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
    font-weight: 500;
}

/* Future Section */
.about-future {
    background: var(--gray-100);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-2xl);
}

.about-future h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.about-future p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .about-intro h2,
    .about-values h2,
    .about-team h2,
    .about-future h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-future {
        padding: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .about-intro h2,
    .about-values h2,
    .about-team h2,
    .about-future h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .value-item {
        padding: var(--spacing-lg);
    }
    
    .about-future {
        padding: var(--spacing-lg);
    }
}