﻿.about-page {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    padding: var(--space-4xl) var(--space-xl);
}

.about-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.18));
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-hero__inner {
    max-width: 720px;
    margin: var(--space-xl) auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
}

.about-hero h1 {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
}

.about-hero__lead {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.about-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}

.about-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.about-cta-button:active {
    transform: translateY(0);
}

.about-cta-button::after {
    content: '🐾';
    font-size: 1.1rem;
}

.about-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.about-section--alt {
    background: rgba(248, 249, 255, 0.7);
}

.about-section__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-section__header h2 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.about-section__header p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(102, 126, 234, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--primary);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-list li {
    padding-left: var(--space-xl);
    position: relative;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.about-list li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 2px;
}

.about-section__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.about-section__text p {
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

.about-section__image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.about-cta {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .about-page {
        padding: var(--space-3xl) var(--space-lg);
    }

    .about-hero {
        padding: var(--space-3xl) var(--space-2xl);
    }

    .about-section {
        padding: var(--space-2xl);
    }
}

