/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Page Header - Consistent with Hero, but simplified */
.page-header {
    background-color: var(--color-light-gray);
    padding: 80px 20px 60px;
    text-align: center;
    border-bottom: 5px solid var(--color-sky);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission & Story Section (2-Column) */
.two-col-text {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.two-col-text .col-left,
.two-col-text .col-right {
    flex: 1;
}

.section-sub-heading {
    font-size: 2rem;
    color: var(--color-navy);
    margin-top: 0;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark-gray);
}

/* Founder Bio Section */
.founder-section {
    background-color: var(--color-light-gray);
    padding-top: 60px;
}

.bio-flex-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.bio-image-wrapper {
    flex-basis: 266px; /* 350px Fixed width for the image column */
    flex-shrink: 0;
    text-align: center;
}

.founder-image-placeholder {
    /* width: 100%; */
	width: Auto;
    height: 400px; /* Placeholder dimensions */
    background-color: #ccd7e1;
    border-radius: 8px;
    margin-bottom: 10px;
	background-image: url('./darcy400px.png');
}

.bio-content ul {
    list-style: none;
    padding-left: 0;
}

.bio-content li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2333A1F4"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 1.2rem;
    padding-left: 2rem;
    margin-bottom: 15px;
}

/* Philosophy Section */
.philosophy-section {
    padding-bottom: 80px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    padding: 25px;
    border: 1px solid #e0e6ec;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.philosophy-card:hover {
    background-color: #fcfdfe;
    box-shadow: 0 5px 15px rgba(16, 42, 67, 0.08);
}

.philosophy-card h3 {
    color: var(--color-sky);
    font-size: 1.35rem;
}

/* --- RESPONSIVENESS (Mobile Adjustments) --- */
@media (max-width: 768px) {
    .two-col-text {
        flex-direction: column;
        gap: 20px;
    }

    .bio-flex-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .bio-image-wrapper {
        flex-basis: auto;
        width: 80%; /* Limit width of image on mobile */
    }

    .bio-content ul {
        text-align: left;
    }
}