/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text on dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #0d2138; /* Slightly lighter dark background for contrast */
}

.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F, #1a3c5a);
    padding: 80px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #f5e6d0;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
}

.page-promotions__hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #f5e6d0;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 50px;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
    margin: 10px;
    border: 2px solid transparent;
}

.page-promotions__btn--primary {
    background-color: #64FFDA;
    color: #0A192F;
}

.page-promotions__btn--primary:hover {
    background-color: #46b399;
    transform: translateY(-3px);
}

.page-promotions__btn--secondary {
    background-color: #1a3c5a;
    color: #64FFDA;
    border-color: #64FFDA;
}

.page-promotions__btn--secondary:hover {
    background-color: #64FFDA;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-promotions__btn--link {
    background: none;
    color: #64FFDA;
    border: none;
    padding: 0;
    margin: 0;
    text-decoration: underline;
    font-size: 1em;
}

.page-promotions__btn--link:hover {
    color: #46b399;
}

.page-promotions__btn--outline {
    background-color: transparent;
    color: #64FFDA;
    border-color: #64FFDA;
}

.page-promotions__btn--outline:hover {
    background-color: #64FFDA;
    color: #0A192F;
    transform: translateY(-3px);
}

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

.page-promotions__promo-card {
    background-color: #1a3c5a;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-5px);
}

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__promo-card-title {
    font-size: 1.8em;
    color: #64FFDA;
    margin-bottom: 15px;
}

.page-promotions__promo-card-text {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.page-promotions__why-join {
    background-color: #0A192F;
}

.page-promotions__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promotions__feature-item {
    text-align: center;
    background-color: #0d2138;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(70%) sepia(100%) saturate(500%) hue-rotate(120deg) brightness(100%); /* Adjust to match #64FFDA */
}

.page-promotions__feature-title {
    font-size: 1.5em;
    color: #64FFDA;
    margin-bottom: 10px;
}

.page-promotions__feature-text {
    color: #e0e0e0;
    font-size: 0.95em;
}

.page-promotions__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__detail-item {
    background-color: #1a3c5a;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__detail-title {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions__detail-title a {
    color: #64FFDA;
    text-decoration: none;
}

.page-promotions__detail-title a:hover {
    color: #46b399;
    text-decoration: underline;
}

.page-promotions__detail-description {
    color: #e0e0e0;
    font-size: 1em;
    margin-bottom: 25px;
}

.page-promotions__faq {
    background-color: #0A192F;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #0d2138;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #64FFDA;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    color: #e0e0e0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.page-promotions__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 10px;
}

.page-promotions__cta-final {
    background: linear-gradient(135deg, #1a3c5a, #0A192F);
    padding: 80px 0;
}

.page-promotions__cta-title {
    font-size: 3em;
    color: #64FFDA;
    margin-bottom: 20px;
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.highlight {
    color: #64FFDA;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promo-grid, .page-promotions__features-grid, .page-promotions__detail-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0 30px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-promotions__promo-card, .page-promotions__feature-item, .page-promotions__detail-item, .page-promotions__faq-item {
        padding: 20px;
    }
    .page-promotions__promo-card-image {
        height: 150px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.5em;
    }
    .page-promotions__feature-title {
        font-size: 1.3em;
    }
    .page-promotions__detail-title {
        font-size: 1.4em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
    .page-promotions__cta-title {
        font-size: 2.5em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__section-description {
        font-size: 0.9em;
    }
    .page-promotions__promo-grid, .page-promotions__features-grid, .page-promotions__detail-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__cta-description {
        font-size: 0.9em;
    }
}