/* style/promotions.css */
:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #002244;
    --border-color: #e0e0e0;
}

.page-promotions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

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

/* Hero Section */
.page-promotions .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: var(--background-dark);
    color: var(--text-color-light);
}

.page-promotions .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions .hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.page-promotions .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions .hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions .hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-promotions .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions .cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-promotions section {
    padding: 50px 0;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.page-promotions section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-promotions h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-promotions p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-promotions ul,
.page-promotions ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-promotions ol {
    list-style-type: decimal;
}

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

.page-promotions a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions a:hover {
    color: var(--secondary-color);
}

.page-promotions .button-primary,
.page-promotions .button-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.05em;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.page-promotions .button-primary {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
}

.page-promotions .button-primary:hover {
    background: #004488;
    border-color: #004488;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions .button-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-promotions .button-secondary:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Promotion Overview Grid */
.page-promotions .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .promo-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .promo-card img {
    max-width: 100%;
    height: 200px; /* Ensure minimum size */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.page-promotions .promo-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-promotions .promo-card h3 a {
    color: var(--primary-color);
}

.page-promotions .promo-card p {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

.page-promotions .card-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions .card-button:hover {
    background: #e6c200;
}

/* Detailed Promotions */
.page-promotions .detailed-promotions .promo-section-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.page-promotions .detailed-promotions .promo-section-item h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions .detailed-promotions .promo-section-item ul {
    list-style-type: circle;
    margin-left: 25px;
}

.page-promotions .detailed-promotions .promo-section-item li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-promotions .faq-section {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-promotions .faq-section h2 {
    color: var(--secondary-color);
}

.page-promotions .faq-section h2::after {
    background-color: var(--secondary-color);
}

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

.page-promotions .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.page-promotions .faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-promotions .faq-question:hover {
    background: #004488;
}

.page-promotions .faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--text-color-light);
}

.page-promotions .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

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

.page-promotions .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background: #ffffff;
    color: var(--text-color-dark);
    padding: 0 25px;
    border-radius: 0 0 8px 8px;
}

.page-promotions .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-top: none;
}

.page-promotions .faq-answer p {
    margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions .final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
    color: var(--text-color-light);
    padding: 80px 20px;
}

.page-promotions .final-cta h2 {
    color: var(--secondary-color);
}

.page-promotions .final-cta p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-color-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .hero-content h1 {
        font-size: 2.2em;
    }
    .page-promotions h2 {
        font-size: 1.8em;
    }
    .page-promotions h3 {
        font-size: 1.4em;
    }
    .page-promotions .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions .hero-section {
        padding: 40px 15px;
    }
    .page-promotions .hero-content h1 {
        font-size: 1.8em;
    }
    .page-promotions .hero-content p {
        font-size: 1em;
    }
    .page-promotions .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-promotions section {
        padding: 30px 0;
    }
    .page-promotions h2 {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-promotions .promo-card img {
        height: 180px;
    }
    .page-promotions .promo-card h3 {
        font-size: 1.2em;
    }
    .page-promotions .faq-question {
        padding: 15px 20px;
    }
    .page-promotions .faq-question h3 {
        font-size: 1.1em;
    }
    .page-promotions .faq-toggle {
        font-size: 20px;
    }
    .page-promotions .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions .hero-section {
        padding: 30px 10px;
    }
    .page-promotions .hero-content h1 {
        font-size: 1.5em;
    }
    .page-promotions .hero-content p {
        font-size: 0.9em;
    }
    .page-promotions .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-promotions h2 {
        font-size: 1.4em;
    }
    .page-promotions .promo-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions .promo-card {
        padding: 20px;
    }
    .page-promotions .promo-card img {
        height: 160px;
    }
    .page-promotions .detailed-promotions .promo-section-item {
        padding: 20px;
    }
    .page-promotions .faq-question {
        padding: 12px 15px;
    }
    .page-promotions .faq-question h3 {
        font-size: 1em;
    }
    .page-promotions .faq-answer {
        padding: 12px 15px;
    }
}