/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #000080; /* Dark blue background */
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #000080 0%, #00004d 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.page-promotions__hero-content {
    max-width: 600px;
    padding: 0 20px;
}

.page-promotions__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-promotions__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.page-promotions__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 400px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__button--primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark blue */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-promotions__button--secondary:hover {
    background-color: #FFD700;
    color: #000080; /* Dark blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

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

.page-promotions__section:nth-of-type(odd) {
    background-color: #000066; /* Slightly lighter dark blue */
}

.page-promotions__section:nth-of-type(even) {
    background-color: #000080; /* Dark blue */
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions__section-description {
    font-size: 1.2em;
    color: #c0c0c0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

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

.page-promotions__overview-item {
    background-color: #00004d; /* Darker blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__overview-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions__overview-item p {
    font-size: 1em;
    color: #a0a0a0;
    line-height: 1.5;
}

.page-promotions__overview-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__promo-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-promotions__promo-card {
    background-color: #00004d; /* Darker blue for cards */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700;
}

.page-promotions__promo-content {
    padding: 30px;
}

.page-promotions__promo-title {
    font-size: 2em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-title a {
    color: #FFD700; /* Gold */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-title a:hover {
    color: #e6c200; /* Slightly darker gold */
    text-decoration: underline;
}

.page-promotions__promo-description {
    font-size: 1.1em;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.page-promotions__feature-item {
    background-color: #00004d; /* Darker blue for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__feature-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-promotions__feature-item p {
    font-size: 1em;
    color: #a0a0a0;
    line-height: 1.5;
}

.page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-promotions__tip-list li {
    background-color: #00004d; /* Darker blue for list items */
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 1.1em;
}

.page-promotions__tip-list li strong {
    color: #FFD700; /* Gold */
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions__tip-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-promotions__faq-accordion {
    margin-top: 40px;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #00004d; /* Darker blue for FAQ items */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
    padding: 20px 30px;
    background-color: #000066; /* Slightly lighter dark blue */
    color: #FFD700; /* Gold */
    font-size: 1.4em;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

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

.page-promotions__faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer p {
    color: #c0c0c0;
    line-height: 1.7;
    padding-bottom: 20px;
    font-size: 1.1em;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding-top: 15px;
}

.page-promotions__cta-final {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #000080; /* Dark blue */
    text-shadow: none;
}

.page-promotions__cta-final .page-promotions__section-description {
    color: #333; /* Darker text for light background */
    margin-bottom: 50px;
}

.page-promotions__cta-final .page-promotions__button--primary {
    background-color: #000080; /* Dark blue */
    color: #FFD700; /* Gold */
}

.page-promotions__cta-final .page-promotions__button--primary:hover {
    background-color: #000066; /* Slightly lighter dark blue */
    color: #FFD700; /* Gold */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-promotions__hero-content {
        order: 2;
    }

    .page-promotions__hero-image-wrapper {
        order: 1;
        margin-bottom: 30px;
        max-width: 80%;
    }

    .page-promotions__title {
        font-size: 2.8em;
    }

    .page-promotions__subtitle {
        font-size: 1.3em;
    }

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

    .page-promotions__promo-card {
        flex-direction: column;
    }

    .page-promotions__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 40px 0;
    }

    .page-promotions__title {
        font-size: 2.2em;
    }

    .page-promotions__subtitle {
        font-size: 1.1em;
    }

    .page-promotions__description {
        font-size: 0.95em;
    }

    .page-promotions__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__button--large {
        padding: 15px 30px;
        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__overview-grid,
    .page-promotions__feature-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__overview-item,
    .page-promotions__feature-item {
        padding: 20px;
    }

    .page-promotions__overview-item h3,
    .page-promotions__feature-item h3 {
        font-size: 1.4em;
    }

    .page-promotions__promo-content {
        padding: 20px;
    }

    .page-promotions__promo-title {
        font-size: 1.6em;
    }

    .page-promotions__promo-description {
        font-size: 1em;
    }

    .page-promotions__tip-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .page-promotions__tip-icon {
        margin-bottom: 15px;
    }

    .page-promotions__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }

    .page-promotions__faq-answer p {
        font-size: 1em;
    }
}

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

    .page-promotions__subtitle {
        font-size: 1em;
    }

    .page-promotions__button {
        width: 100%;
        margin: 10px 0;
    }

    .page-promotions__button--secondary {
        margin-left: 0;
    }

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

    .page-promotions__section-description {
        font-size: 0.9em;
    }

    .page-promotions__promo-card {
        margin-bottom: 20px;
    }

    .page-promotions__promo-title {
        font-size: 1.4em;
    }

    .page-promotions__promo-description {
        font-size: 0.9em;
    }

    .page-promotions__faq-question {
        font-size: 1em;
    }
}