/* style/resources-thabet-customer-service.css */
.page-resources-thabet-customer-service {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-resources-thabet-customer-service__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-thabet-customer-service__article-width {
    max-width: 800px;
}

.page-resources-thabet-customer-service__hero {
    background: linear-gradient(135deg, #0A2463, #3A5A9E);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-resources-thabet-customer-service__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    line-height: 1.2;
}

.page-resources-thabet-customer-service__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-thabet-customer-service__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-thabet-customer-service__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-thabet-customer-service__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-resources-thabet-customer-service__heading {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-thabet-customer-service__sub-heading {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-thabet-customer-service__contact-method {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #FFD700;
}

.page-resources-thabet-customer-service__method-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-thabet-customer-service__contact-method ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.page-resources-thabet-customer-service__contact-method ul li {
    margin-bottom: 8px;
}

.page-resources-thabet-customer-service__contact-button {
    display: inline-block;
    background-color: #0A2463;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-thabet-customer-service__contact-button:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-resources-thabet-customer-service__note {
    font-style: italic;
    color: #555;
    margin-top: 10px;
}

.page-resources-thabet-customer-service__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-resources-thabet-customer-service__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-thabet-customer-service__list--ordered {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-resources-thabet-customer-service__list--ordered li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-thabet-customer-service__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.page-resources-thabet-customer-service__faq-question {
    font-size: 1.2em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-thabet-customer-service__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5em;
    line-height: 1;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-thabet-customer-service__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-thabet-customer-service__faq-answer {
    font-size: 1em;
    color: #555;
    margin-top: 0;
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.page-resources-thabet-customer-service__faq-answer.active {
    display: block;
}

.page-resources-thabet-customer-service__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.page-resources-thabet-customer-service__cta-button--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-resources-thabet-customer-service__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-resources-thabet-customer-service__cta-button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #0A2463;
}

.page-resources-thabet-customer-service__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
}

.page-resources-thabet-customer-service__return-link-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-resources-thabet-customer-service__return-link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.1em;
}

.page-resources-thabet-customer-service__return-link:hover {
    color: #FFD700;
}

.page-resources-thabet-customer-service__sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.page-resources-thabet-customer-service__sticky-button {
    display: block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-thabet-customer-service__sticky-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-thabet-customer-service__hero {
        padding: 60px 0;
    }

    .page-resources-thabet-customer-service__title {
        font-size: 2em;
    }

    .page-resources-thabet-customer-service__heading {
        font-size: 1.8em;
    }

    .page-resources-thabet-customer-service__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-thabet-customer-service__cta-button,
    .page-resources-thabet-customer-service__contact-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-thabet-customer-service__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-thabet-customer-service__sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .page-resources-thabet-customer-service__sticky-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-resources-thabet-customer-service__hero {
        padding: 40px 0;
    }

    .page-resources-thabet-customer-service__title {
        font-size: 1.6em;
    }

    .page-resources-thabet-customer-service__description {
        font-size: 0.95em;
    }

    .page-resources-thabet-customer-service__heading {
        font-size: 1.5em;
    }

    .page-resources-thabet-customer-service__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-thabet-customer-service__cta-button,
    .page-resources-thabet-customer-service__contact-button {
        padding: 10px 18px;
        font-size: 0.9em;
    }

    .page-resources-thabet-customer-service__contact-method {
        padding: 20px;
    }

    .page-resources-thabet-customer-service__faq-item {
        padding: 15px;
    }
}