* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Source Sans Pro", sans-serif;
}

h3, .navbar__item, #navbar__logo {
    font-family: "Nexa", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.navbar {
    background: #263869;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#navbar__logo img {
    max-height: 80px;
    vertical-align: middle;
}

.section-heading {
    font-size: 2em;
    color: #263869;
    margin-bottom: 50px;
    text-align: center;
    padding-top: 50px;
}

.contact-heading {
    margin-top: 100px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto;
    width: 90%;
}

.column {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1em;
    text-align: center;
    margin-bottom: 1.5em;
}

.card {
    width: 100%;
    padding: 2em 1.5em;
    background: #263869;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 1em 0;
}

.card p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

.icon-wrapper {
    background-color: #fff;
    font-size: 30px;
    height: 60px;
    width: 60px;
    color: #263869;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    margin-bottom: 1em;
}

.card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

form label {
    margin-bottom: 0.5em;
    color: #263869;
    font-weight: bold;
}

form input, form button {
    padding: 1em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form button:focus {
    outline: none;
    border-color: #263869;
}

form button {
    background-color: #263869;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #1b2957;
}

.footer-container {
    background: #263869;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

.footer-container p {
    margin-bottom: 1em;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fefdfd;
}

@media screen and (min-width: 768px) {
    .column {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

@media screen and (min-width: 992px) {
    .column {
        flex: 0 0 32%;
        max-width: 32%;
    }
}
