/* =========================
   GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7fb;
    color: #222;
}


/* =========================
   HEADER
========================= */

.header {
    background: #ffffff;
    min-height: 80px;
    padding: 15px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}


.logo-image {
    width: 70px;
    height: 70px;

    object-fit: contain;
}


.logo-text h1 {
    font-size: 24px;
    color: #003b73;
}


.logo-text p {
    margin-top: 4px;
    color: #666;
    font-size: 14px;
}


/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #003b73;
}


/* =========================
   SUPPORT PAGE
========================= */

.support-page {
    min-height: calc(100vh - 160px);
    padding: 60px 7%;
}


.support-container {
    max-width: 1100px;
    margin: auto;
}


/* =========================
   TITLE
========================= */

.support-title {
    text-align: center;
    margin-bottom: 45px;
}


.support-title h2 {
    color: #003b73;
    font-size: 34px;
    margin-bottom: 12px;
}


.support-title p {
    color: #666;
    font-size: 16px;
}


/* =========================
   SUPPORT CARDS
========================= */

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.support-card {
    background: white;

    padding: 30px 25px;

    border-radius: 10px;

    text-align: center;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08);

    border: 1px solid #e5e9ef;
}


.support-icon {
    font-size: 42px;
    margin-bottom: 15px;
}


.support-card h3 {
    color: #003b73;
    margin-bottom: 12px;
}


.support-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}


.support-card a {
    display: block;

    color: #0066b3;

    text-decoration: none;

    font-weight: bold;

    margin-top: 8px;
}


.support-card a:hover {
    color: #d60000;
}


/* =========================
   HELP SECTION
========================= */

.help-section {
    margin-top: 50px;

    background: white;

    padding: 35px;

    border-radius: 10px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.07);
}


.help-section > h2 {
    color: #003b73;
    margin-bottom: 25px;
}


.help-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.help-item {
    background: #f4f7fb;

    padding: 22px;

    border-left: 4px solid #0066b3;

    border-radius: 5px;
}


.help-item h3 {
    color: #003b73;
    font-size: 17px;
    margin-bottom: 10px;
}


.help-item p {
    color: #555;
    line-height: 1.6;
}


/* =========================
   OFFICE
========================= */

.office-section {
    margin-top: 30px;

    background: #ffffff;

    padding: 30px;

    border-radius: 10px;

    text-align: center;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.07);
}


.office-section h2 {
    color: #003b73;
    margin-bottom: 12px;
}


.office-section p {
    color: #555;
    line-height: 1.7;
}


/* =========================
   BUTTONS
========================= */

.back-section {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}


.back-button,
.results-button {
    display: inline-block;

    padding: 13px 22px;

    border-radius: 5px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}


.back-button {
    background: #003b73;
    color: white;
}


.back-button:hover {
    background: #00264d;
}


.results-button {
    background: #d60000;
    color: white;
}


.results-button:hover {
    background: #a90000;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #002b52;

    color: white;

    text-align: center;

    padding: 25px;

    font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .help-list {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .header {
        padding: 12px 4%;
    }

    .logo-image {
        width: 55px;
        height: 55px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 11px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 13px;
    }

    .support-page {
        padding: 40px 15px;
    }

    .support-title h2 {
        font-size: 27px;
    }

    .help-section {
        padding: 22px;
    }

    .back-section {
        flex-direction: column;
    }

    .back-button,
    .results-button {
        text-align: center;
        width: 100%;
    }

}