/* p{
    font-family: Arial, Helvetica, sans-serif !important;
}

h1, h2{
    font-size: 2rem;
    text-align: center;
}

section{
    margin: 2rem 0;
}

.about-us-title{
    text-align: center;
}

.about-us-sub-title{
    text-align: center;
    color: #C53030;
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.about-us-content{
    text-align: center;
} */


/* ------------------- */
/* Mission Goal Section */
/* ------------------- */
/* .mission-goal-section {
    padding: 4rem 0;
    background-color: var(--color-bg-medium);
}

.mission-goal{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-goal-card{
    flex: 1 1 50%;
    background-color: #ffffff;
    border: 2px solid #D69E2E;

    padding: 2rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-goal-card:hover{
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .mission-goal{
        flex-direction: row;
    }
} */


/* ------------------- */
/* Global Styles & Variables */
/* ------------------- */
:root {
    --color-primary-text: #333333;
    --color-secondary-text: #555555;
    --color-accent-red: #C53030;
    --color-accent-gold: #D69E2E;
    --color-background-light: #F7FAFC;
    --color-background-white: #FFFFFF;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-primary-text);
    background-color: var(--color-background-white);
    line-height: 1.6;
}

/* .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
} */

section {
    padding: 4rem 0;
}

/* ------------------- */
/* Typography */
/* ------------------- */
h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

.main-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.main-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-secondary-text);
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* ------------------- */
/* Intro Section */
/* ------------------- */
.intro-section {
    background-color: var(--color-background-light);
}

/* ------------------- */
/* Mission & Goal Section */
/* ------------------- */
.mission-goal-section {
    background-color: var(--color-background-white);
}

.mission-goal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-goal-card {
    background-color: var(--color-background-white);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-accent-gold);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.mission-goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon svg {
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--color-accent-red);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.card-content {
    color: var(--color-secondary-text);
}

/* ------------------- */
/* Features Section */
/* ------------------- */
.features-section {
    background-color: var(--color-background-light);
}

/* .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 2rem;
} */

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(214, 158, 46, 0.1); /* Light gold background */
    margin-bottom: 1rem;
}

.feature-icon svg {
    color: var(--color-accent-gold);
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: var(--color-secondary-text);
}

/* ------------------- */
/* Responsive Media Queries */
/* ------------------- */
@media (min-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .mission-goal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}