.page-header {
    position: relative;
    height: 320px;
    width: 100%;
    background: url("../../img/Sign Mockup.png") center center / cover no-repeat;
    background-image: image-set(url("../../img/Sign Mockup.webp") type("image/webp"), url("../../img/Sign Mockup.png") type("image/png"));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-offset);
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
}

.page-header.page-header-president {
    background: url("../../img/Sign Mockup.png") center center / cover no-repeat;
    background-image: image-set(url("../../img/Sign Mockup.webp") type("image/webp"), url("../../img/Sign Mockup.png") type("image/png"));
}

.page-header h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #0A1A44;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: clamp(2rem, 6vw, 3.2rem);
    line-height: 1.1;
    max-width: 100%;
    white-space: normal;
}

.page-header.page-header-president {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-header.page-header-president h1 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    font-size: clamp(2.4rem, 6vw, 3.8rem);
}

.whyatteca-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(53, 94, 252, .08), transparent 42%),
        linear-gradient(180deg, #f4f7ff 0%, #eef3ff 100%);
}

.whyatteca-intro {
    max-width: 940px;
    margin: 0 auto 28px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid rgba(10, 26, 68, .12);
    background: #fff;
    padding: 24px 22px;
    box-shadow: 0 12px 28px rgba(10, 26, 68, .08);
}

.whyatteca-kicker {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #1b4fd6;
    background: rgba(53, 94, 252, .12);
    border-radius: 999px;
    padding: 6px 12px;
}

.whyatteca-intro h2 {
    margin: 12px 0 8px;
    color: #091f55;
    font-weight: 800;
}

.whyatteca-intro p {
    margin: 0;
    color: #516081;
    line-height: 1.75;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.value-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(53, 94, 252, .16);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    padding: 20px 18px 18px;
    box-shadow: 0 12px 24px rgba(10, 26, 68, .08);
    transition: transform .22s ease, box-shadow .22s ease;
    animation: cardIn .55s ease both;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(10, 26, 68, .12);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #eaf0ff;
    color: #1b4fd6;
    margin-bottom: 12px;
}

.value-card h3 {
    margin: 0 0 10px;
    color: #0b2c73;
    font-size: clamp(1.05rem, 2.1vw, 1.33rem);
    font-weight: 800;
}

.value-card p {
    margin: 0;
    color: #4d5e80;
    line-height: 1.72;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .page-header {
        margin-top: var(--header-offset);
        height: 220px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header.page-header-president {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .page-header.page-header-president h1 {
        font-size: 2.1rem;
    }
}
