/* style/support-technical-support.css */

.page-support-technical-support {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #0A244A; /* Dark blue text for readability on light backgrounds */
    background-color: #f8f8f8;
}

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

.page-support-technical-support__hero {
    background: linear-gradient(135deg, #0A244A, #1A3E6B); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support-technical-support__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support-technical-support__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    color: #E0E0E0;
}

.page-support-technical-support__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-support-technical-support__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-support-technical-support__section:nth-of-type(odd) {
    background-color: #f0f4f7; /* Light grey for alternating sections */
}

.page-support-technical-support__section-title {
    font-size: 2.5em;
    color: #0A244A; /* Dark blue */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-support-technical-support__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-support-technical-support__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #333;
}

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

.page-support-technical-support__grid-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-technical-support__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-support-technical-support__item-title {
    font-size: 1.8em;
    color: #0A244A;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-support-technical-support__sub-item-title {
    font-size: 1.4em;
    color: #1A3E6B; /* Slightly lighter dark blue */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-support-technical-support p {
    margin-bottom: 15px;
    color: #333;
}

.page-support-technical-support ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-support-technical-support li {
    margin-bottom: 8px;
    color: #333;
}

.page-support-technical-support__item-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-support-technical-support__link {
    color: #0A244A;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-support-technical-support__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-support-technical-support__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text on gold */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-support-technical-support__btn:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    color: #000000;
    transform: translateY(-2px);
}

.page-support-technical-support__btn--primary {
    background-color: #0A244A; /* Dark blue primary button */
    color: #FFD700; /* Gold text on dark blue */
}

.page-support-technical-support__btn--primary:hover {
    background-color: #1A3E6B; /* Slightly lighter dark blue on hover */
    color: #FFFFFF;
}

/* Accordion for FAQ section */
.page-support-technical-support__accordion {
    margin-top: 30px;
}

.page-support-technical-support__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support-technical-support__accordion-header {
    width: 100%;
    background-color: #0A244A; /* Dark blue header */
    color: #FFD700; /* Gold text */
    padding: 18px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.page-support-technical-support__accordion-header.active {
    background-color: #1A3E6B; /* Slightly lighter dark blue when active */
    color: #FFFFFF;
}

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

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

.page-support-technical-support__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #333;
}

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

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

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

    .page-support-technical-support__grid-item {
        padding: 20px;
    }

    .page-support-technical-support__item-title {
        font-size: 1.5em;
    }

    .page-support-technical-support__sub-item-title {
        font-size: 1.2em;
    }

    .page-support-technical-support__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-support-technical-support__hero-title {
        font-size: 2em;
    }

    .page-support-technical-support__hero-description {
        font-size: 1em;
    }

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

    .page-support-technical-support__section-intro {
        font-size: 0.95em;
    }

    .page-support-technical-support__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}