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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #FFFBF5;
    color: #3D3D3D;
    line-height: 1.6;
}

/* Banner Section */
.banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-cover: cover;
}

/* Content Container */
.content-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 80px 24px;
}

.header-section {
    text-align: center;
    margin-bottom: 48px;
}

.header-section h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #3D3D3D;
    font-weight: normal;
}

/* Text Styles */
.article-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-large {
    font-size: 20px;
    color: #7A7A7A;
}

.text-italic {
    font-style: italic;
    text-align: center;
}

/* Highlights Card (Taupe) */
.card-highlights {
    background-color: #F0EBE3;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.card-highlights h3 {
    font-size: 30px;
    margin-bottom: 24px;
    color: #3D3D3D;
    font-weight: normal;
}

.highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet {
    font-size: 24px;
    color: #C9A961;
    line-height: 1;
}

/* Purpose Card (Gold) */
.card-purpose {
    background-color: #C9A961;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.card-purpose p {
    color: #FFFBF5;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .header-section h2 { font-size: 32px; }
    .banner { height: 250px; }
}