/* About Page Specific Styles */

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: var(--spacing-xxl) var(--spacing-md);
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.page-hero-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.about-text p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cta-buttons {
    margin-top: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn:first-child {
    margin-left: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-left: 0;
    }
}

