.page-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color on light backgrounds */
    background-color: #f4f7f6; /* Light background for the page */
}

.page-support__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-support__hero {
    background-color: #003366; /* Primary color background */
    color: #ffffff; /* White text on primary background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 204, 0, 0.2)); /* Gradient overlay */
    z-index: 1;
}

.page-support__hero .page-support__container {
    position: relative;
    z-index: 2;
}

.page-support__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00; /* Secondary color for main title */
}

.page-support__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__keyword {
    font-weight: bold;
    color: #FFCC00;
}

.page-support__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-support__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
}

.page-support__btn--primary {
    background-color: #FFCC00; /* Secondary color for primary button */
    color: #003366; /* Primary color for text on secondary button */
    border: 2px solid #FFCC00;
}

.page-support__btn--primary:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    border-color: #e6b800;
}

.page-support__btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Secondary color for secondary button text */
    border: 2px solid #FFCC00;
}

.page-support__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

/* Section Titles & Descriptions */
.page-support__section-title {
    font-size: 2.5em;
    color: #003366; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-support__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* FAQ Section */
.page-support__faq-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.page-support__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__faq-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-support__faq-item:hover {
    transform: translateY(-5px);
}

.page-support__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__faq-answer {
    font-size: 1em;
    color: #666666;
}

.page-support__link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-support__link:hover {
    color: #FFCC00;
}

.page-support__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #e0eaf3; /* Lighter shade of primary color */
    border-radius: 10px;
}

.page-support__cta-bottom p {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 25px;
}

/* Contact Methods Section */
.page-support__contact-methods {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.page-support__contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__contact-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-support__contact-item:hover {
    transform: translateY(-5px);
}

.page-support__contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)); /* Subtle glow */
}

.page-support__contact-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support__contact-text {
    font-size: 1em;
    color: #666666;
    margin-bottom: 25px;
}

.page-support__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

/* Quick Access Section */
.page-support__quick-access {
    background-color: #003366; /* Primary color background */
    color: #ffffff; /* White text on primary background */
    padding: 80px 0;
    text-align: center;
}

.page-support__quick-access .page-support__section-title {
    color: #FFCC00; /* Secondary color for title */
}

.page-support__quick-access .page-support__section-description {
    color: #e0eaf3; /* Lighter text for description */
}

.page-support__access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-support__access-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white */
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 204, 0, 0.3); /* Subtle secondary color border */
}

.page-support__access-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-support__access-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(1.2); /* Make icons slightly brighter on dark background */
}

.page-support__access-text {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-support__title {
        font-size: 2.5em;
    }

    .page-support__subtitle {
        font-size: 1.2em;
    }

    .page-support__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-support__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-support__section-title {
        font-size: 2em;
    }

    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-support__title {
        font-size: 2em;
    }

    .page-support__subtitle {
        font-size: 1em;
    }

    .page-support__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-support__section-title {
        font-size: 1.8em;
    }

    .page-support__faq-item,
    .page-support__contact-item,
    .page-support__access-card {
        padding: 20px;
    }

    .page-support__faq-question {
        font-size: 1.1em;
    }
}