/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;
400;
600;
700&family=Poppins:wght@400;
600;
700&display=swap');
:root {
    --sbm-dark-blue: #154061;
    --sbm-light-beige: #F2E6D9;
    --sbm-bright-yellow: #F5B219;
    --sbm-white: #FFFFFF;
    --sbm-text-dark: #1A1A1A;
    --sbm-button-hover-blue: #1E5A8A;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--sbm-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0;
    line-height: 1.2;
}
.about-page-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
    text-align: center;
}
.about-page-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
/* Hero Section */
.about-hero-section {
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
    padding: 120px 20px;
}
.about-hero-section h1 {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 25px;
}
.about-hero-section p {
    font-size: 1.3em;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}
/* Our Philosophy Section */
.about-philosophy-section {
    background-color: var(--sbm-light-beige);
    color: var(--sbm-dark-blue);
}
.about-philosophy-section h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 30px;
}
.about-philosophy-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
/* Our Commitment Section */
.about-commitment-section {
    background-color: var(--sbm-bright-yellow);
    color: var(--sbm-dark-blue);
}
.about-commitment-section h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 30px;
}
.about-commitment-section p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}
/* Call to Action Section */
.about-cta-section {
    background-color: var(--sbm-white);
    color: var(--sbm-dark-blue);
}
.about-cta-section h2 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 25px;
}
.about-cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
}
.about-cta-button {
    display: inline-block;
    background-color: var(--sbm-dark-blue);
    color: var(--sbm-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}
.about-cta-button:hover {
    background-color: var(--sbm-button-hover-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.about-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
/* Responsive Design */
@media (max-width: 768px) {
    .about-page-section {
        padding: 60px 15px;
    }
    .about-hero-section {
        padding: 100px 15px;
    }
    .about-hero-section h1 {
        font-size: 2.5em;
    }
    .about-hero-section p {
        font-size: 1.1em;
    }
    .about-philosophy-section h2,
    .about-commitment-section h2,
    .about-cta-section h2 {
        font-size: 2.2em;
    }
    .about-philosophy-section p,
    .about-commitment-section p,
    .about-cta-section p {
        font-size: 1em;
    }
    .about-cta-button {
        font-size: 1em;
        padding: 15px 30px;
    }
}
@media (max-width: 480px) {
    .about-page-section {
        padding: 40px 10px;
    }
    .about-hero-section {
        padding: 80px 10px;
    }
    .about-hero-section h1 {
        font-size: 2em;
    }
    .about-hero-section p {
        font-size: 0.95em;
    }
    .about-philosophy-section h2,
    .about-commitment-section h2,
    .about-cta-section h2 {
        font-size: 1.8em;
    }
    .about-philosophy-section p,
    .about-commitment-section p,
    .about-cta-section p {
        font-size: 0.9em;
    }
    .about-cta-button {
        font-size: 0.9em;
        padding: 12px 25px;
    }
}