body {
    margin: 0;
    font-family: "Rubik", sans-serif;
    min-height: 100vh;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-color: #064190;
    min-height: 100vh;
    position: relative;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.card {
    width: 110px;
    padding: .8rem;
    position: relative;
}

.card:hover {
    background-color: #e2ebfb;
}

.card-img-top {
    height: 44px;
    max-width: 100%;
    object-fit: contain;
}

.card-name {
    color: #064190;
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

.footer-links a {
    text-decoration: none;
}


.footer-links a:hover {
    text-decoration: underline;
}

.footer-content a {
    color: #ED1C25;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.social-icon:hover {
    background-color: #e2ebfb;
}

.social-icon img {
    height: 20px;
    width: 20px;
}

.bottom-img {
    width: 100%;
    height: 150px;
}

.bottom-img img {
    height: 100%;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
    }

    .logo {
        width: 160px;
        height: 160px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 0.9rem;
    }

    .social-icons {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 1.2rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }
}