:root {
  /* Archify brand colors */
  --blue-archi-lighter: #80DEFE;      
  --blue-archi-light: #006EE5;      
  --blue-archi-dark: #0122ad;      
  --background-blue-light: #F6FAFF; 
  --text-blue-dark: #212e41;     
  --background-white: #ffffff;
  --background-anim: #DBE3F0;    
    

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;

  /* Typography */
  --font-family: 'Times New Roman', Times, serif;
}
.contact * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact body {
    background: #ffffff;
    color: #24335c;
    line-height: 1.6;
}

.contact {
    max-width: 1180px;
    margin: 50px auto;
    padding: 0 30px;
}

/* Hero */

.contact .hero {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: center;
}

.contact .label {
    display: inline-block;
    color: #3157c8;
    font-size: clamp(0.75rem, 0.8vw, 0.85rem);
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.contact .hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    line-height: 1.05;
    color: #20336c;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact .hero p {
    color: #60697f;
    font-size: clamp(1rem, 1vw, 1.1rem);
    margin-bottom: 24px;
    max-width: 450px;
}

.contact .email {
    display: inline-block;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #2855cf;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 28px;
}

.contact .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    background: #2d5be3;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 28px;
    transition: .2s;
}

.contact .btn:hover {
    background: #214bc3;
}

.contact .btn-icon {
    font-size: clamp(1rem, 1vw, 1.1rem);
}

.contact .small {
    color: #6e7484;
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    max-width: 470px;
}

.contact .hero-image img {
    width: 100%;
    /* height: 620px; */
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Divider */

.contact hr {
    border: none;
    border-top: 1px solid #eceef3;
    margin: 55px 0;
}

/* Cards */

.contact .info-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact .icon-wrapper {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #f5f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact .icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.contact .content h2 {
    color: #233b8d;
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    margin-bottom: 12px;
}

.contact .content p {
    color: #5f6778;
    font-size: clamp(0.95rem, 1vw, 1rem);
    margin-bottom: 14px;
    max-width: 760px;
}

.contact .address {
    color: #27314d;
    font-weight: 500;
}

.contact .privacy-link {
    display: inline-block;
    margin-top: 8px;
    color: #2955d9;
    font-weight: 600;
    text-decoration: none;
}

.contact .privacy-link:hover {
    text-decoration: underline;
}

/* Responsive */

@media (max-width: 900px) {

    .contact .hero {
        grid-template-columns: 1fr;
    }

    .contact .hero-image {
        order: -1;
    }

    .contact .hero-image img {
        height: 420px;
    }

    .contact .hero h1 {
    }

    .contact .email {
    }

    .contact .info-card {
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 600px) {

    .contact .container {
        padding: 20px;
        margin: 20px auto;
    }

    .contact .hero h1 {
    }

    .contact .hero p,
    .contact .content p {
    }

    .contact .btn {
        width: 100%;
        justify-content: center;
    }

    .contact .email {
        word-break: break-word;
    }

    /* .contact .hero-image img {
        height: 300px;
    } */

}