/* style/promotions-terms.css */
.page-promotions-terms {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0;
    background-color: #0A2342;
    line-height: 1.6;
}

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

.page-promotions-terms__hero-section {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    border-bottom: 2px solid #E0B400;
}

.page-promotions-terms__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-terms__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d0d0d0;
}

.page-promotions-terms__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-promotions-terms__btn--primary {
    background-color: #E0B400;
    color: #0A2342;
}

.page-promotions-terms__btn--primary:hover {
    background-color: #f5cb4d;
    transform: translateY(-2px);
}

.page-promotions-terms__btn--secondary {
    background-color: #0A2342;
    color: #E0B400;
    border: 2px solid #E0B400;
    margin-left: 15px;
}

.page-promotions-terms__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-promotions-terms__btn--ghost {
    background-color: transparent;
    color: #E0B400;
    border: 1px solid #E0B400;
}

.page-promotions-terms__btn--ghost:hover {
    background-color: #E0B400;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-promotions-terms__content-section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-promotions-terms__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.page-promotions-terms__main-content {
    background-color: #1a3a60;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-terms__section-title {
    font-size: 2.5em;
    color: #E0B400;
    margin-bottom: 30px;
    border-bottom: 3px solid #E0B400;
    padding-bottom: 15px;
}

.page-promotions-terms__sub-title {
    font-size: 1.8em;
    color: #f5f5f5;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-promotions-terms__text {
    margin-bottom: 15px;
    color: #d0d0d0;
}

.page-promotions-terms__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.page-promotions-terms__list li {
    margin-bottom: 8px;
}

.page-promotions-terms__accordion {
    margin-top: 30px;
}

.page-promotions-terms__accordion-item {
    background-color: #0A2342;
    border: 1px solid #2a4d79;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.page-promotions-terms__accordion-header {
    background-color: #2a4d79;
    color: #E0B400;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: 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-promotions-terms__accordion-header:hover {
    background-color: #3b5e8c;
}

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

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

.page-promotions-terms__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: #0A2342;
    color: #d0d0d0;
}

.page-promotions-terms__accordion-content.active {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px;
}

.page-promotions-terms__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-terms__sidebar {
    background-color: #1a3a60;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-terms__sidebar-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a4d79;
}

.page-promotions-terms__sidebar-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-promotions-terms__sidebar-title {
    font-size: 1.6em;
    color: #E0B400;
    margin-bottom: 20px;
}

.page-promotions-terms__promo-list {
    list-style: none;
    padding: 0;
}

.page-promotions-terms__promo-list li {
    margin-bottom: 10px;
}

.page-promotions-terms__promo-list a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-terms__promo-list a:hover {
    color: #E0B400;
    text-decoration: underline;
}

.page-promotions-terms__sidebar-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-promotions-terms__cta-section {
    background: linear-gradient(45deg, #E0B400 0%, #f5cb4d 100%);
    padding: 80px 0;
    text-align: center;
    color: #0A2342;
    border-top: 2px solid #E0B400;
}

.page-promotions-terms__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A2342;
}

.page-promotions-terms__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #2a4d79;
}

.page-promotions-terms__cta-buttons .page-promotions-terms__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-terms__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-terms__hero-title {
        font-size: 2.8em;
    }

    .page-promotions-terms__section-title {
        font-size: 2em;
    }

    .page-promotions-terms__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-terms__hero-section {
        padding: 80px 0;
    }

    .page-promotions-terms__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-terms__hero-subtitle {
        font-size: 1.1em;
    }

    .page-promotions-terms__btn {
        padding: 10px 25px;
        font-size: 1em;
    }

    .page-promotions-terms__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-promotions-terms__main-content, .page-promotions-terms__sidebar {
        padding: 25px;
    }

    .page-promotions-terms__cta-title {
        font-size: 2em;
    }

    .page-promotions-terms__cta-text {
        font-size: 1em;
    }

    .page-promotions-terms__cta-buttons {
        flex-direction: column;
        display: flex;
        align-items: center;
    }

    .page-promotions-terms__cta-buttons .page-promotions-terms__btn {
        margin: 10px 0;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-promotions-terms__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-terms__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-terms__btn {
        width: 90%;
        margin: 10px auto;
    }

    .page-promotions-terms__section-title {
        font-size: 1.8em;
    }

    .page-promotions-terms__sub-title {
        font-size: 1.3em;
    }

    .page-promotions-terms__cta-title {
        font-size: 1.8em;
    }
}