html,
body {
    margin: 0;
    padding: 0;
    font: 1.2rem sans-serif;
}

@media only screen and (max-width: 800px) {
    .logo-text {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }

    .aq {
        padding: 10px 0 !important;
        width: auto !important;
        justify-content: flex-start;
    }

    .aq p {
        font-size: 0.95rem; /* slightly smaller font for mobile */
        line-height: 1.4;
    }

    .ss {
        display: flex;
        width: auto !important; /* shrink-wrap to content */
        flex-direction: column;
        align-items: flex-start; /* align items inside leftwards */
        margin-top: 20px !important;
        max-width: 100%;
    }

    .ic {
        width: 26px !important;
        height: 26px !important;
        padding: 5px !important;
        flex-shrink: 0; /* prevent icon from stretching/squishing */
    }

    .aq:nth-child(3) .ic {
        transform: scale(1); /* Make the location icon visually match the size of others */
    }
}

.bg {
    background-image: url("landing-page.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    position: relative;
    min-height: 100vh;
    background: rgba(217, 217, 217, 0.85);
    /* fallback for rgba */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.logo-container {
    text-align: center;
}

.logo-text {
    font-size: 4rem;
    color: #1e3a8a;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-family: inherit;
    text-transform: uppercase;
}

.logo-text span {
    color: #ff5722;
}

.ss {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
}

.aq {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: transparent;
    transition: transform 0.2s;
}

.aq:hover {
    transform: translateY(-5px);
}

.aq a {
    text-decoration: none;
    color: #333;
}

.aq a:hover {
    color: #333;
}

.aq p {
    margin: 0;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

.main-logo {
    width: 100%;
    max-width: 279px;
    height: auto;
}