/* style/support.css */
.page-support {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-support-hero {
    background-color: #0A2342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-support-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    overflow: hidden;
}

.page-support-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-support-hero .page-support-container {
    position: relative;
    z-index: 1;
}

.page-support-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-support-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-support-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-support-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-support-section {
    padding: 60px 0;
    text-align: center;
}

.page-support-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-support-section-title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-support-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support-section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-support-faq {
    position: relative;
}

.page-support-faq-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    opacity: 0.05;
    z-index: 0;
}

.page-support-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.page-support-accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-support-accordion-header {
    background-color: #0A2342;
    color: #FFD700;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-support-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support-accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support-accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-support-accordion-content p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.page-support-link {
    color: #0A2342;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support-link:hover {
    color: #FFD700;
}

.page-support-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-support-contact-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-support-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-support-contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-support-contact-heading {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-support-contact-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.page-support-button-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
}

.page-support-cta {
    background-color: #0A2342;
    color: #fff;
    padding: 80px 0;
}

.page-support-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-support-cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.page-support-cta-text-wrapper {
    text-align: center;
}

.page-support-cta .page-support-section-title {
    color: #FFD700;
    font-size: 3em;
}

.page-support-cta .page-support-section-description {
    color: #e0e0e0;
    margin-bottom: 30px;
}

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

.page-support-button-primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-support-button-primary:hover {
    background-color: #e6c200;
}

.page-support-button-secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-support-button-secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-support-hero {
        padding: 120px 0;
    }
    .page-support-title {
        font-size: 4.5em;
    }
    .page-support-subtitle {
        font-size: 1.5em;
    }
    .page-support-cta-content {
        flex-direction: row;
        text-align: left;
    }
    .page-support-cta-text-wrapper {
        text-align: left;
    }
    .page-support-cta-buttons {
        justify-content: flex-start;
    }
    .page-support-cta .page-support-section-title {
        font-size: 3.5em;
    }
}

@media (max-width: 767px) {
    .page-support-title {
        font-size: 2.5em;
    }
    .page-support-subtitle {
        font-size: 1em;
    }
    .page-support-section-title {
        font-size: 1.8em;
    }
    .page-support-section-description {
        font-size: 0.9em;
    }
    .page-support-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-support-accordion-content.active {
        padding: 15px 20px;
    }
    .page-support-contact-item {
        padding: 20px;
    }
    .page-support-contact-heading {
        font-size: 1.4em;
    }
    .page-support-contact-text {
        font-size: 0.9em;
    }
    .page-support-cta-content {
        flex-direction: column;
    }
    .page-support-cta-image {
        order: -1; /* Image first on mobile */
    }
    .page-support-cta .page-support-section-title {
        font-size: 2.2em;
    }
    .page-support-cta .page-support-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .page-support-faq-icon {
        width: 100px;
    }
}