body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.contact-hero {
    min-height: 70vh;
    background: #15305D; /* Solid blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0 32px 0;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow: 0 8px 32px rgba(21, 48, 93, 0.3);
}

.contact-card {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(21, 48, 93, 0.3), 0 2px 0 #FFD700 inset;
    padding: 40px 32px 32px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: contactPop 1.2s cubic-bezier(.4,2,.6,1);
}
@keyframes contactPop {
    0% { transform: scale(0.8) rotateY(-10deg); opacity: 0; }
    100% { transform: scale(1) rotateY(0deg); opacity: 1; }
}
.contact-card h1 {
    color: #15305D;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.contact-desc {
    color: #15305D;
    font-size: 1.08rem;
    margin-bottom: 24px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
}
.contact-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.contact-form label {
    font-weight: 500;
    color: #15305D;
}
.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    resize: none;
    background: #FFFFFF;
    color: #15305D;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #15305D;
    outline: none;
}
.contact-btn {
    background: #15305D;
    color: #FFFFFF;
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(21, 48, 93, 0.3);
}
.contact-btn:hover {
    background: #FFD700;
    color: #15305D;
    border: 1px solid #15305D;
}
.contact-info {
    margin-top: 18px;
    color: #15305D;
    font-size: 1.02rem;
    background: #FFD700;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(21, 48, 93, 0.2);
}
.contact-info b {
    color: #15305D;
}
.main-footer {
    background: #FFFFFF;
    color: #15305D;
    text-align: center;
    padding: 24px 0 12px 0;
    font-size: 1rem;
    border-top: 1px solid #FFD700;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    margin-top: 0;
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 18px 0 10px 0;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    .contact-card {
        padding: 16px 4vw 12px 4vw;
        border-radius: 14px;
    }
    .main-footer {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        padding: 12px 0 6px 0;
        font-size: 0.95rem;
    }
}
