* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #0b2944;
}


/* NAVIGATION */

header {
    padding: 8px;
}

.nav {
    width: 100%;
    min-height: 82px;

    padding: 10px 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f7fbfd;

    border: 1px solid #edf4f7;

    border-radius: 16px;
}

.logo img {
    width: 58px;
    height: 58px;

    object-fit: contain;

    border-radius: 50%;
}

.links {
    display: flex;
    align-items: center;

    gap: 38px;
}

.links a {
    position: relative;

    color: #0b2034;

    font-size: 14px;
    font-weight: bold;

    text-decoration: none;
}

.links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -13px;

    width: 0;
    height: 2px;

    background: #1778d0;

    transition: width 0.2s;
}

.links a:hover::after,
.links .active::after {
    width: 100%;
}

.links .active {
    color: #1778d0;
}


/* PAGE */

main {
    max-width: 1180px;

    margin: 0 auto;

    padding: 70px 45px;
}


/* CONTACT LAYOUT */

.contact-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}


/* LEFT SIDE */

.eyebrow {
    margin-bottom: 12px;

    color: #1778d0;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 1.5px;
}

.contact-info h1 {
    margin-bottom: 16px;

    color: #0a2745;

    font-size: 54px;
}

.title-line {
    width: 72px;
    height: 3px;

    margin-bottom: 24px;

    background: #1778d0;
}

.contact-intro {
    max-width: 500px;

    margin-bottom: 38px;

    color: #41596d;

    font-size: 17px;
    line-height: 1.7;
}


/* CONTACT DETAILS */

.contact-list {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 18px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #e6f3fb;

    color: #1778d0;

    border-radius: 50%;

    font-size: 21px;
}

.contact-item h2 {
    margin-bottom: 4px;

    color: #0a3156;

    font-size: 16px;
}

.contact-item a {
    color: #53697a;

    text-decoration: none;

    font-size: 15px;
}

.contact-item a:hover {
    color: #1778d0;
}


/* FORM */

.contact-form-wrapper {
    padding: 32px;

    background: #f8fbfd;

    border: 1px solid #e2edf3;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(14, 65, 100, 0.08);
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group label {
    color: #173a58;

    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    font-family: inherit;

    font-size: 15px;

    color: #233e53;

    background: #ffffff;

    border: 1px solid #ccdae3;

    border-radius: 6px;

    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1778d0;
}

.contact-form button {
    padding: 15px 22px;

    border: none;

    border-radius: 6px;

    background: #1778d0;

    color: white;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;
}

.contact-form button:hover {
    background: #0e66af;
}


/* TABLET */

@media (max-width: 900px) {

    .links {
        gap: 18px;
    }

    main {
        padding: 55px 30px;
    }

    .contact-section {
        gap: 40px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .nav {
        padding: 12px 18px;

        flex-direction: column;

        gap: 15px;
    }

    .links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 16px;
    }

    .links a {
        font-size: 12px;
    }

    main {
        padding: 45px 20px;
    }

    .contact-section {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info h1 {
        font-size: 42px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

}