/* Utility classes extracted to align all pages with the clean rhythm of about.html */

/* ---- Section Spacing & Backgrounds ---- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: #f8fafc;
}

/* ---- Container (fallback if not already in main.css) ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Typography ---- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    color: #1a365d;
    font-size: 2.5rem;
    font-weight: 700;
}
.section-title p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ---- Hero Banner ---- */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
    color: #fff;
    padding: 180px 0 80px !important;
    text-align: center;
    min-height: auto !important;
    display: block !important;
    align-items: initial !important;
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 2rem; }
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* ---- CTA Banner ---- */
.cta-section {
    background: linear-gradient(135deg,#1a365d 0%, #2b6cb0 100%) !important;
    color:#fff;
    padding:80px 0;
    text-align:center;
}
.cta-section h2,
.cta-section p { color:#fff !important; }

/* CTA typography */
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* ---- Buttons ---- */
.btn-blue {
    background: linear-gradient(135deg,#1a365d 0%, #2b6cb0 100%);
    color:#fff;
    border:none;
    padding:1rem 2rem;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:opacity .3s ease;
}
.btn-blue:hover{opacity:.85;}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-primary {
    background: rgba(255,255,255,0.2);
    color:#fff;
    border:2px solid rgba(255,255,255,0.3);
}
.btn-primary:hover {
    background:#fff;
    color:#1a365d;
}
.btn-secondary {
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background:rgba(255,255,255,0.1);
}

/* ---- Grid & Card ---- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ---- Icons ---- */
.icon-blue {
    color: #2b6cb0;
    font-size: 3rem;
    margin-bottom: 1rem;
}
