.about-page {

    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* --- Hero/Intro Section --- */
.hero-about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 4rem;
    margin: 4rem 0 8rem;
}

.hero-about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin: 0;
}

.hero-about-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-top: 1rem;
    max-width: 50ch;
}

.hero-about-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(47, 79, 79, 0.15);
}

/* --- Reusable Content Section --- */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.content-section-text .section-header {
    text-align: left;
    margin: 0 0 2rem 0;
    max-width: none;
}

.content-section-text .section-header h2 {
    font-size: 2.2rem;
    padding-bottom: 0.75rem;
}

.content-section-text .section-header h2::after {
    left: 0;
    transform: none;
}

.content-section-text p {
    margin-bottom: 1.5rem;
    color: var(--neutral-dark);
}
/* --- Philosophy Section --- */
.philosophy-section {
    margin-bottom: 6rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.philosophy-item {
    background-color: var(--neutral-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

.philosophy-icon {
    display: inline-flex;
    padding: 1rem;
    border-radius: 50%;
    background-color: var(--primary-accent);
    margin-bottom: 1.5rem;
}

.philosophy-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

.philosophy-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 0.5rem;
}

.philosophy-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .hero-about {
        gap: 2rem;
    }
    .hero-about-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-about {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-about-photo {
        order: -1;
        max-width: 250px;
        margin: 0 auto 2rem;
    }
    .hero-about-subtitle {
        margin: 1rem auto 0;
    }
    .content-section {
        grid-template-columns: 1fr;
    }
    .content-section-text .section-header {
        align-items: center;
    }
    .content-section .placeholder-visual {
        margin-top: 2rem;
    }
}

.content-section-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}