.page-support {
    color: #333333;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px);
}

.page-support__hero-section {
    position: relative;
    padding: 80px 20px;
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-support__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-support__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-support__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-support__hero-button {
    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;
    min-width: 180px;
    text-align: center;
    font-size: 1.05em;
}

.page-support__hero-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-support__hero-button--primary:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-support__hero-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support__hero-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-support__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-support__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    display: block;
}

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

.page-support__section-title {
    font-size: 2.2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-support__faq-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

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

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

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

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

.page-support__faq-answer a {
    color: #0A2463;
    text-decoration: underline;
}

.page-support__faq-answer a:hover {
    color: #FFD700;
}

.page-support__faq-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.page-support__faq-link:hover {
    text-decoration: underline;
}

.page-support__faq-image {
    text-align: center;
    margin-top: 40px;
}

.page-support__faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-support__contact-options-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.page-support__contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__contact-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-support__contact-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

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

.page-support__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__contact-button:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-support__contact-cta {
    margin-top: 40px;
    text-align: center;
}

.page-support__contact-cta-text {
    font-size: 1.1em;
    color: #555555;
}

.page-support__contact-cta-text a {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
}

.page-support__contact-cta-text a:hover {
    color: #FFD700;
}

.page-support__guides-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

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

.page-support__guide-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.page-support__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-support__guide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-support__guide-card h3 {
    padding: 20px 25px 0;
    margin-bottom: 10px;
}

.page-support__guide-title {
    font-size: 1.3em;
    color: #0A2463;
    font-weight: bold;
}

.page-support__guide-title a {
    color: #0A2463;
    text-decoration: none;
}

.page-support__guide-title a:hover {
    color: #FFD700;
}

.page-support__guide-text {
    font-size: 0.95em;
    color: #666666;
    padding: 0 25px 20px;
}

.page-support__guides-cta {
    text-align: center;
    margin-top: 50px;
}

.page-support__guides-button {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-support__guides-button:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-support__cta-section {
    padding: 80px 20px;
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
}

.page-support__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-support__cta-section .page-support__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-support__cta-section .page-support__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

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

.page-support__cta-button {
    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;
    min-width: 180px;
    text-align: center;
    font-size: 1.05em;
}

.page-support__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-support__cta-button--primary:hover {
    background-color: #e6c200;
    color: #0A2463;
}

.page-support__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}


@media (max-width: 1024px) {
    .page-support__hero-title {
        font-size: 2.5em;
    }
    .page-support__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support {
        padding-top: var(--header-offset, 100px);
    }
    .page-support__hero-section {
        padding: 60px 15px;
    }
    .page-support__hero-title {
        font-size: 2em;
    }
    .page-support__hero-description {
        font-size: 1em;
    }
    .page-support__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__hero-button {
        width: 100%;
        max-width: 300px;
    }
    .page-support__content-area {
        padding: 30px 15px;
    }
    .page-support__section-title {
        font-size: 1.8em;
    }
    .page-support__section-description {
        font-size: 0.95em;
    }
    .page-support__faq-item {
        padding: 25px;
    }
    .page-support__faq-question {
        font-size: 1.2em;
    }
    .page-support__contact-card {
        padding: 25px;
    }
    .page-support__contact-card-title {
        font-size: 1.4em;
    }
    .page-support__contact-icon {
        width: 120px;
        height: 120px;
    }
    .page-support__guide-image {
        height: 200px;
    }
    .page-support__cta-section {
        padding: 60px 15px;
    }
    .page-support__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-support__cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-support__hero-image img,
    .page-support__faq-image img,
    .page-support__contact-icon,
    .page-support__guide-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-support__hero-title {
        font-size: 1.8em;
    }
    .page-support__section-title {
        font-size: 1.6em;
    }
    .page-support__faq-grid,
    .page-support__contact-grid,
    .page-support__guides-grid {
        grid-template-columns: 1fr;
    }
}

.page-support img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}