body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f8fb;
    color: #333;
}

/* Hero Banner */
.hero {
    background: url('img/banner.jpg') center/cover no-repeat;
    color: white;
    padding: 10px 0;
    text-align: center;
    background-color: #c691aa;
}
.hero-text{
    padding: 20px;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 0px;
}
.hero p {
    font-size: 20px;
}

/* Section Layout */
.section {
    padding: 50px 20px;
    /* background-color: #fbeafb; */
}
.section:nth-child(even) {
    background-color: #f2e9ee;
}
.section:nth-child(odd) {
    background-color: #ffffff;
}
.section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.section-content.reverse {
    flex-direction: row-reverse;
}
.section .text {
    flex: 1;
    min-width: 300px;
}
.section .text h2 {
    font-size: 28px;
    color: #C22F76;
    margin-bottom: 20px;
}
.section .text p {
    font-size: 18px;
    color: #222e3a;
}
.section .image {
    flex: 1;
    min-width: 300px;
}
.section .image img {
    width: 100%;
    height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Core Programs Page */
.core-programs-page {
    max-width: 900px;
    margin: auto;
    color: #222e3a;
}

.core-programs-header {
    margin-bottom: 15px;
}

.core-programs-title {
    font-size: 32px;
    font-weight: bold;
    color: #C22F76;
    margin-bottom: 5px;
}

.core-programs-subtitle {
    font-size: 16px;
    color: #4b5c6b;
    margin-bottom: 15px;
}

/* List Styling */
.core-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-programs-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-left: 4px solid #C22F76;
    color: #222e3a;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.core-programs-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* Name + Text */
.core-programs-name {
    font-weight: bold;
    font-size: 22px;
    color: #C22F76;
    margin-bottom: 8px;
}

.core-programs-item p {
    font-size: 18px;
    color: #222e3a;
    line-height: 1.5;
    margin: 0;
}

/* Core Values */
.values {
    text-align: center;
    padding: 40px 20px 20px;
    background-color: #fbeaf6;
    color: #222e3a;
}
.values h2 {
    font-size: 32px;
    color: #C22F76;
    margin-bottom: 40px;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}
.value-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
}
.value-card h3 {
    color: #C22F76;
    margin-bottom: 10px;
}

/* Call to Action */
.cta {
    background-color: #c691aa;
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.cta p {
    font-size: 18px;
}
