/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Màu chữ nhạt cho nền tối */
    background-color: #1A202C; /* Nền tối chủ đạo */
    line-height: 1.6;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A202C, #2D3748);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-terms-conditions__hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Màu vàng sang trọng */
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #FFD700; /* Màu vàng nổi bật */
    color: #1A202C; /* Chữ tối trên nền vàng */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__cta-button:hover {
    background-color: #E0C000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-terms-conditions__content-section {
    padding: 60px 20px;
}

.page-terms-conditions__container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #2D3748; /* Nền hơi nhạt hơn cho phần nội dung */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__article h2 {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-terms-conditions__article h3 {
    font-size: 1.5em;
    color: #F0F0F0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__article p {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-terms-conditions__article ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-terms-conditions__article li {
    margin-bottom: 8px;
}

.page-terms-conditions__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-terms-conditions__faq-section {
    margin-top: 60px;
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__faq-title {
    font-size: 2.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 15px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #4A5568;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: #2D3748;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #3A455A;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: #F0F0F0;
}

.faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #1A202C;
    color: #C0C0C0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 25px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 10px;
    color: #C0C0C0;
}

.faq-answer a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #E0C000;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-terms-conditions__hero-title {
        font-size: 2.8em;
    }
    .page-terms-conditions__hero-description {
        font-size: 1.1em;
    }
    .page-terms-conditions__container {
        padding: 30px;
    }
    .page-terms-conditions__article h2 {
        font-size: 1.8em;
    }
    .page-terms-conditions__article h3 {
        font-size: 1.3em;
    }
    .page-terms-conditions__faq-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 60px 15px;
    }
    .page-terms-conditions__hero-title {
        font-size: 2.2em;
    }
    .page-terms-conditions__hero-description {
        font-size: 1em;
    }
    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-terms-conditions__content-section {
        padding: 40px 15px;
    }
    .page-terms-conditions__container {
        padding: 20px;
    }
    .page-terms-conditions__article h2 {
        font-size: 1.6em;
    }
    .page-terms-conditions__article h3 {
        font-size: 1.2em;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 1.5em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 12px 20px;
    }
    .page-terms-conditions__faq-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__hero-description {
        font-size: 0.9em;
    }
    .page-terms-conditions__article h2 {
        font-size: 1.4em;
    }
    .page-terms-conditions__article h3 {
        font-size: 1.1em;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 1.3em;
    }
    .page-terms-conditions__faq-title {
        font-size: 1.6em;
    }
}