* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 5%;
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

#landing-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    overflow: visible;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
}

.logo-icon {
    width: 96px;
    height: 95px;
    aspect-ratio: 96/95;
    object-fit: contain;
}

.logo-text {
    display: flex;
    width: 194px;
    height: 95px;
    flex-direction: column;
    justify-content: center;
}

.logo-sikat {
    color: #343866;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 3.2px;
}

.logo-aurora {
    color: #FDD01E;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 3.2px;
}

/* HERO */
.hero-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 20px;
    width: 100%;
    overflow: visible;
}

.hero-content {
    flex: 1 1 55%;
    max-width: 600px;
}

.hero-title {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -4.48px;
    margin-bottom: 24px;
}

.highlight {
    color: #FFCB00;
}

.section-label {
    color: #002148;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
    letter-spacing: -1.68px;
    margin-bottom: 8px;
}

.section-description {
    color: #002148;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 156%;
    letter-spacing: -1.4px;
    margin-bottom: 24px;
}

.btn-primary {
    display: flex;
    width: 176px;
    height: 51px;
    padding: 10px 5px 10px 18px;
    align-items: center;
    gap: 3px;
    border-radius: 7px;
    background: #002148;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.hero-illustration {
    flex: 0 0 auto;
    width: 700px;
    max-width: 65%;
    height: auto;
    aspect-ratio: 1/1;
    background: url('../assets/images/hero-illustration.png') 50% / contain no-repeat;
    margin-top: -60px;
}

/* FOOTER */
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(176, 176, 176, 0.34);
    padding-top: 16px;
    margin-top: 24px;
}

.footer-copyright {
    color: #B0B0B0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 156%;
}

.footer-divider {
    width: 1px;
    height: 45px;
    background: rgba(176, 176, 176, 0.34);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text {
    color: #B0B0B0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: -0.48px;
}

/* ============================
   RESPONSIVE BREAKPOINTS (LANDING)
============================ */

/* Tablets and small laptops */
@media (max-width: 1024px) {
    .container {
        padding: 32px 40px;
    }

    .hero-row {
        gap: 24px;
        align-items: center;
    }

    .hero-illustration {
        width: 550px;
        max-width: 55%;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }
}

/* Tablets portrait / large phones */
@media (max-width: 768px) {
    .container {
        padding: 24px 24px;
    }

    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-illustration {
        width: 300px;
        max-width: 80%;
        margin: 0 auto;
    }

    .btn-primary {
        margin: 0 auto;
    }

    .logo {
        justify-content: center;
        align-self: center;
    }

    .site-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-divider {
        display: none;
    }
}

/* Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .section-label {
        font-size: 20px;
    }

    .section-description {
        font-size: 16px;
    }

    .hero-illustration {
        width: 220px;
        max-width: 90%;
    }

    .logo-icon {
        width: 64px;
        height: 63px;
    }

    .logo-sikat,
    .logo-aurora {
        font-size: 24px;
    }
}

/* ============================
   AUTH PAGE
============================ */

.auth-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    background: #fff;
}

.auth-container {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* BRANDING PANEL — plain, no background, sits directly on the page */
.branding-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    color: #01325F;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #01325F;
    border-radius: 30px;
    padding: 8px 20px;
}

.back-arrow {
    font-size: 16px;
}

.branding-logo {
    width: 120px;
    height: 119px;
    aspect-ratio: 127/126;
    background: url('../assets/images/sikatLogo.png') 50% / contain no-repeat;
    margin-bottom: 10px;
}

.branding-welcome {
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.branding-title {
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 7px;
}

.branding-subtitle {
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-top: 4px;
}

.branding-divider {
    width: 220px;
    height: 3px;
    background: #01325F;
    margin: 14px 0 20px;
}

.branding-tagline {
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: 0.3px;
}

/* FORM WRAPPER — the light gray rounded background box, fills the right half at full height */
.form-wrapper {
    flex: 1;
    background: #EFEFEF;
    border-radius: 60px 0 0 60px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM PANEL CARD — the white floating card inside the gray wrapper */
.form-panel {
    width: 100%;
    max-width: 520px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}

.auth-title {
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
}

.auth-subtext {
    color: #01325F;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
    letter-spacing: 0.4px;
    text-align: center;
    margin-bottom: 30px;
}

/* INPUT FIELDS */
.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: #FFF;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.25) inset;
    padding: 14px 18px;
    margin-bottom: 18px;
}

.input-group svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.input-group input {
    border: none;
    outline: none;
    flex: 1;
    color: #838383;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1px;
    background: transparent;
    width: 100%;
}

.input-group input::placeholder {
    color: #838383;
}

/* FORM OPTIONS ROW (Sign In) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: #01325F;
    cursor: pointer;
    flex-shrink: 0;
}

.forgot-link {
    color: #0069CA;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.13px;
    text-decoration: none;
}

/* TERMS CHECKBOX (Sign Up) */
.terms-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    cursor: pointer;
    text-align: left;
}

.terms-check .checkbox-input {
    margin-top: 0;
}

.terms-text {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.3px;
}

.terms-link {
    color: #F47A20;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.3px;
    text-decoration: none;
}

/* LOG IN BUTTON */
.btn-login {
    width: 70%;
    display: block;
    margin: 0 auto 18px;
    border-radius: 30px;
    background: #01325F;
    color: #FFF;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.32px;
    padding: 16px;
    border: none;
    cursor: pointer;
}

/* CREATE ACCOUNT BUTTON */
.btn-create {
    width: 70%;
    display: block;
    margin: 0 auto 18px;
    border-radius: 40px;
    background: #FDD01E;
    color: #01325F;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: 0.3px;
    padding: 16px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* SWITCH TEXT */
.switch-text {
    text-align: center;
    color: #767676;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.5px;
}

.switch-link {
    color: #5490E9;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.3px;
    text-decoration: none;
    margin-left: 4px;
}

/* ============================
   USER HOME (post Get Started)
============================ */

#user-home {
    width: 1440px;
    max-width: 100%;
    background: #FFFFFF;
    margin: 0 auto;
    position: relative;
}

/* NAVIGATION */
.uh-navbar {
    width: 100%;
    height: 116px;
    background: #FFFFFF;
    box-shadow: 0 8px 17.3px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.uh-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uh-logo-icon {
    width: 64px;
    height: 63px;
    object-fit: contain;
}

.uh-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.1em;
    color: #343866;
}

.uh-nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.uh-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #656565;
    text-decoration: none;
}

.uh-nav-link.active {
    color: #F47A20;
}

.uh-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.uh-login-link {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #656565;
    text-decoration: none;
}

.uh-login-link svg {
    width: 33.75px;
    height: 33.75px;
    flex-shrink: 0;
}

.uh-volunteer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 53px;
    padding: 18px 46px 15px 45px;
    gap: 10px;
    background: #F47A20;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #FFFBFB;
    text-decoration: none;
    white-space: nowrap;
}

/* HERO COVER */
.uh-cover {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: url('../assets/images/cover.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
}

.uh-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
}

.uh-cover-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 5%;
}

.uh-cover-badge {
    display: inline-flex;
    padding: 3px 7px 3px 5px;
    justify-content: center;
    align-items: center;
    background: #FDC409;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -1.05px;
    color: #000000;
    margin-bottom: 20px;
    width: fit-content;
}

.uh-cover-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -2.8px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.uh-cover-text {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 156%;
    letter-spacing: -0.91px;
    color: #FFFFFF;
    max-width: 576px;
    margin-bottom: 24px;
}

.uh-cover-btn {
    display: flex;
    width: 176px;
    height: 39px;
    padding: 12px 46px 13px 45px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #F47A20;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #FFFBFB;
    text-decoration: none;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .uh-nav-links {
        gap: 24px;
    }

    .uh-nav-link,
    .uh-login-link,
    .uh-volunteer-btn {
        font-size: 15px;
    }

    .uh-cover-title {
        font-size: 32px;
    }
}

@media (max-width: 900px) {
    .uh-navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 16px 5%;
        gap: 16px;
    }

    .uh-nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .uh-cover {
        min-height: 350px;
    }

    .uh-cover-content {
        max-width: 100%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .uh-nav-right {
        gap: 12px;
    }

    .uh-login-link span {
        display: none;
    }

    .uh-volunteer-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .uh-cover-title {
        font-size: 26px;
    }

    .uh-cover-text {
        font-size: 13px;
    }
}
.branding-panel,
.form-wrapper {
    transition: transform 0.6s ease-in-out, border-radius 0.6s ease-in-out;
}

.auth-form {
    animation: fadeSlideIn 0.5s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.auth-container.signup-mode .branding-panel {
    transform: translateX(100%);
}

.auth-container.signup-mode .form-wrapper {
    transform: translateX(-100%);
    border-radius: 0 60px 60px 0;
}

@media (max-width: 900px) {
    .auth-container.signup-mode .branding-panel,
    .auth-container.signup-mode .form-wrapper {
        transform: none;
    }

    .auth-container.signup-mode .form-wrapper {
        border-radius: 60px 60px 0 0;
        order: 1;
    }

    .auth-container.signup-mode .branding-panel {
        order: 2;
    }
}

/* ============================
   RESPONSIVE BREAKPOINTS (AUTH)
============================ */

@media (max-width: 900px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-container.signup-mode .form-wrapper,
    .auth-container.signup-mode .branding-panel {
        order: initial;
    }

    .branding-panel {
        padding: 32px 20px;
        min-height: 40vh;
    }

    .form-wrapper {
        border-radius: 60px 60px 0 0;
        padding: 24px;
        min-height: 60vh;
    }

    .form-panel {
        padding: 24px 20px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .branding-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .branding-subtitle {
        font-size: 24px;
    }

    .branding-tagline {
        font-size: 14px;
    }

    .form-wrapper {
        padding: 16px;
    }

    .form-panel {
        padding: 20px 16px;
    }
}

/* PROGRAMS */
.uh-programs {
    max-width: 1247px;
    margin: 80px auto;
    padding: 0 5%;
}

.uh-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: #F47A20;
    margin-bottom: 12px;
}

.uh-programs-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 16px;
}

.uh-programs-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 156%;
    color: #000000;
    max-width: 400px;
    margin-bottom: 40px;
}

.uh-programs-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.uh-program-card {
    flex: 1 1 300px;
    min-width: 280px;
    background: #FFFAF3;
    box-shadow: 0 3px 10px rgba(244, 122, 32, 0.55);
    border-radius: 20px;
    padding: 32px 24px;
}

.uh-program-icon {
    width: 78px;
    height: 77px;
    background: #F47A20;
    border-radius: 12px;
    box-shadow: 0 2px 2.8px rgba(0, 0, 0, 0.25);
    margin-bottom: 16px;
}

.uh-program-name {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #000000;
    margin-bottom: 12px;
}

.uh-program-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 156%;
    color: #000000;
}

@media (max-width: 900px) {
    .uh-programs-row {
        flex-direction: column;
    }

    .uh-programs-title {
        font-size: 24px;
    }
}

/* WHO WE ARE */
.uh-who-we-are {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1440px;
    margin: 80px auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.uh-wwa-photo {
    flex: 0 0 300px;
    width: 300px;
    height: 240px;
    background: #FFFAF3 url('../assets/images/who-we-are.jpg') 50% / cover no-repeat;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 19px;
}

.uh-wwa-content {
    flex: 1 1 400px;
}

.uh-wwa-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -1.05px;
    color: #F47A20;
    margin-bottom: 12px;
}

.uh-wwa-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1.68px;
    color: #000000;
    margin-bottom: 16px;
}

.uh-wwa-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 156%;
    letter-spacing: -0.91px;
    color: #000000;
    max-width: 448px;
}

@media (max-width: 900px) {
    .uh-who-we-are {
        flex-direction: column;
        text-align: center;
    }

    .uh-wwa-eyebrow {
        justify-content: center;
    }
}

/* WHO WE ARE - Mission/Vision/Values column */
.uh-wwa-divider {
    width: 1px;
    align-self: stretch;
    background: #FFE6D4;
    flex-shrink: 0;
}

.uh-wwa-mvv {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.uh-mvv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.uh-mvv-text {
    flex: 1;
}

.uh-mvv-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.uh-mvv-label--mission {
    color: #F47A20;
}

.uh-mvv-label--vision {
    color: #002148;
}

.uh-mvv-label--values {
    color: #000000;
}

.uh-mvv-desc {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 156%;
    letter-spacing: -0.02em;
    color: #000000;
    max-width: 315px;
}

.uh-mvv-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 2px 2.8px rgba(0, 0, 0, 0.25);
    position: relative;
}

.uh-mvv-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.uh-mvv-icon--mission::before {
    background: #F47A20;
}

.uh-mvv-icon--vision::before {
    background: #002148;
}

.uh-mvv-icon--values::before {
    background: #000000;
}

@media (max-width: 900px) {
    .uh-wwa-divider {
        display: none;
    }

    .uh-mvv-row {
        flex-direction: column;
        text-align: center;
    }

    .uh-mvv-desc {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* ============================
   FORGOT PASSWORD MODAL
============================ */
.fp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 300;
}
.fp-modal-overlay--open {
    display: flex;
}
.fp-modal-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 36px;
    width: 400px;
    max-width: 90vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.fp-modal-title {
    color: #01325F;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 8px;
    text-align: center;
}
.fp-modal-subtext {
    color: #767676;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.fp-modal-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    box-sizing: border-box;
}
.fp-modal-error {
    color: #F04438;
    font-size: 12px;
    text-align: center;
    margin: -6px 0 12px;
}
.fp-modal-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    background: #01325F;
    color: #FFFFFF;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
}
.fp-modal-cancel {
    display: block;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    color: #767676;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 4px;
}