@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap');

:root {
    --blue-dark: #0c1b54;
    --blue: #12328f;
    --lime: #9ff43c;
    --lime-strong: #8be22c;
    --mint: #eafff4;
    --sky: #eaf4ff;
    --text: #0b142d;
    --muted: #5a6480;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(12, 27, 84, 0.15);   
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: #f6f9fe;
    color: var(--text);
    line-height: 1.6;
}


.hero-sec{
    position: relative;
    background-color: #1A237E;
    padding: 40px 0;
    min-height: 400px;
}
.hero-sec::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/bg.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.2;
}

section.how {
    overflow: hidden;
}

/* Contact Page */
.contact-page {
    background: #f7fbff;
    color: #0b142d;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.contact {
    max-width: 1100px;
    margin: 60px auto;
    background: #fff;
    border: 2px solid #c7ddff;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(12, 27, 84, 0.12);
}

.contact__info {
    padding: 40px;
    background: #fff;
}

.brand--dark img {
    height: 28px;
}

.contact__info h2 {
    margin: 20px 0 10px;
    color: #0c1b54;
    font-size: 26px;
}

.contact__info p {
    color: #5a6480;
    max-width: 360px;
    line-height: 1.5;
}

.contact__details {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0c1b54;
    font-weight: 700;
}

.contact__detail a {
    color: #0c1b54;
}

.contact__detail .icon {
    font-size: 16px;
}

.contact__form-card {
    background: var(--lime);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__form-card h3 {
    margin: 0;
    color: #0c1b54;
    font-size: 24px;
    line-height: 1.3;
}

.contact__form {
    display: grid;
    gap: 14px;
}

.contact__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.contact__form label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0b142d;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 10px;
    font-size: 14px;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: #fff;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: 2px solid #0c1b54;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
    background: var(--lime);
    color: #0c1b54;
}

.contact__submit {
    width: 100%;
    background: #0c1b54;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.contact__submit:hover {
    box-shadow: 0 12px 30px rgba(12, 27, 84, 0.35);
    transform: translateY(-1px);
}

.contact__submit.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.contact__submit.is-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    border-top-color: #fff;
    transform: translate(-50%, -50%);
    animation: spin 0.8s linear infinite;
}

.contact__submit:disabled {
    opacity: 0.75;
}

.contact__status {
    min-height: 18px;
}

.contact__status .success {
    color: #0a8a3a;
    font-weight: 700;
}

.contact__status .error {
    color: #c22;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact {
        margin: 20px;
    }

    .contact__form-card {
        border-top: 1px solid rgba(0,0,0,0.08);
    }
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Privacy Policy */
.policy-page {
    background: #f2f7f7;
    color: #0b142d;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.policy {
    max-width: 1100px;
    margin: 50px auto 70px;
    padding: 0 20px 40px;
}

.policy h1 {
    text-align: center;
    font-size: 28px;
    color: #0c1b54;
    margin-bottom: 26px;
}

.policy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.policy__card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dbe7ef;
    box-shadow: 0 12px 30px rgba(12, 27, 84, 0.08);
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.6;
}

.policy__card h3 {
    margin: 0 0 8px;
    font-size: 15px;
    color: #0c1b54;
}

.policy__card ul {
    margin: 0;
    padding-left: 18px;
}

.policy__card li {
    margin: 4px 0;
    color: #3c455d;
}

.policy__card p {
    margin: 0;
    color: #3c455d;
}

@media (max-width: 600px) {
    .policy {
        margin: 30px auto 50px;
    }

    .policy h1 {
        font-size: 24px;
    }
}

.policy-hero__eyebrow {
    color: #fff;
    opacity: 1;
    font-weight: 600;
    text-align: center;
}
.policy-hero__lede {
    max-width: 590px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    text-align: center;
    margin: 0 auto;
}