.page-terms-conditions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    background: #B71C1C; /* Background */
}

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

/* Hero Section */
.page-terms-conditions__hero-section {
    position: relative;
    overflow: hidden;
    background: #7A0E0E; /* Deep Red */
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
}

.page-terms-conditions__hero-image-wrapper {
    width: 100%;
    height: 600px; /* Adjusted for better aspect ratio */
    overflow: hidden;
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-terms-conditions__hero-content-area {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 20px auto 0;
}

.page-terms-conditions__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #FFD86A; /* Gold-like from button gradient */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-terms-conditions__description {
    font-size: 1.1rem;
    color: #FFF5E1; /* Text Main */
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.page-terms-conditions__content-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.page-terms-conditions__dark-section {
    background: #D32F2F; /* Card BG */
    color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__section-title {
    font-size: 2.2rem;
    color: #FFD86A; /* Gold-like */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    padding-top: 20px;
}

.page-terms-conditions__sub-title {
    font-size: 1.8rem;
    color: #F4D34D; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-terms-conditions__text-block {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__highlight {
    color: #FFCC66; /* Glow */
    font-weight: bold;
}

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

.page-terms-conditions__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
}

.page-terms-conditions__list-strong {
    color: #F4D34D; /* Gold */
}

.page-terms-conditions__list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Buttons */
.page-terms-conditions__btn-primary,
.page-terms-conditions__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
    max-width: 100%; /* For responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-terms-conditions__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
    color: #7A0E0E; /* Deep Red for contrast */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn-primary:hover {
    background: linear-gradient(180deg, #FFE89A 0%, #F6C810 100%);
    transform: translateY(-2px);
}

.page-terms-conditions__btn-secondary {
    background: #7A0E0E; /* Deep Red */
    color: #FFD86A; /* Gold-like */
    border: 2px solid #F4D34D; /* Gold border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__btn-secondary:hover {
    background: #5A0A0A;
    color: #FFE89A;
    transform: translateY(-2px);
}

/* FAQ Section */
.page-terms-conditions__faq-list {
    margin-top: 40px;
}

details.page-terms-conditions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #F2B544; /* Border */
    overflow: hidden;
    background: #D32F2F; /* Card BG */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: #FFF5E1; /* Text Main */
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question::-webkit-details-marker {
    display: none;
}
details.page-terms-conditions__faq-item summary.page-terms-conditions__faq-question:hover {
    background: #E53935; /* Auxiliary color */
}
.page-terms-conditions__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #FFF5E1; /* Text Main */
}