/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #1a002b; /* Darker variant of main color for overall background */
}

.page-promotions .highlight {
    color: #FFD700; /* Gold for highlights */
}

.page-promotions .page-promotions-brand-name {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions .page-promotions-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-promotions-hero {
    background: linear-gradient(135deg, #4B0082, #6a0dad);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-promotions-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

.page-promotions-btn-primary {
    background-color: #FFD700;
    color: #4B0082; /* Dark purple text on gold button */
    font-size: 1.2em;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-btn-primary:hover {
    background-color: #ffe84d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-btn-secondary {
    background-color: #4B0082;
    color: #FFD700; /* Gold text on dark purple button */
    border: 2px solid #FFD700;
    font-size: 1em;
    padding: 10px 25px;
}

.page-promotions-btn-secondary:hover {
    background-color: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-promotions-introduction, 
.page-promotions-list, 
.page-promotions-cta-bottom, 
.page-promotions-faq {
    padding: 80px 0;
    text-align: center;
}

.page-promotions-section-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.page-promotions-section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotions Grid */
.page-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promotions-card {
    background-color: #2a004b; /* Slightly lighter purple for cards */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-promotions-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promotions-card-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #FFFFFF;
    line-height: 1.3;
}

.page-promotions-card-description {
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* CTA Bottom */
.page-promotions-cta-bottom {
    background-color: #4B0082;
    padding: 100px 0;
}

.page-promotions-cta-bottom .page-promotions-section-title {
    color: #FFD700;
}

.page-promotions-cta-bottom .page-promotions-text-content {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.page-promotions-note {
    font-size: 0.9em;
    color: #c0c0c0;
    margin-top: 30px;
}

/* FAQ Section */
.page-promotions-faq {
    background-color: #1a002b;
}

.page-promotions-faq-item {
    background-color: #2a004b;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-promotions-faq-item:hover {
    background-color: #3f006b;
}

.page-promotions-faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-promotions-faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-promotions-faq-answer {
    font-size: 1em;
    line-height: 1.7;
    color: #c0c0c0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-promotions-faq-item.active .page-promotions-faq-answer {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-hero-title {
        font-size: 2.8em;
    }
    .page-promotions-hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-section-title {
        font-size: 2.2em;
    }
    .page-promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions-card-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-promotions-hero {
        padding: 80px 0;
    }
    .page-promotions-hero-title {
        font-size: 2.2em;
    }
    .page-promotions-hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-btn-primary {
        font-size: 1.1em;
        padding: 12px 25px;
    }
    .page-promotions-introduction, 
    .page-promotions-list, 
    .page-promotions-cta-bottom, 
    .page-promotions-faq {
        padding: 60px 0;
    }
    .page-promotions-section-title {
        font-size: 1.8em;
    }
    .page-promotions-section-description,
    .page-promotions-text-content {
        font-size: 1em;
    }
    .page-promotions-card-content {
        padding: 20px;
    }
    .page-promotions-card-title {
        font-size: 1.3em;
    }
    .page-promotions-faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions-hero {
        padding: 60px 0;
    }
    .page-promotions-hero-title {
        font-size: 1.8em;
    }
    .page-promotions-hero-subtitle {
        font-size: 1em;
    }
    .page-promotions-btn-primary {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-promotions-introduction, 
    .page-promotions-list, 
    .page-promotions-cta-bottom, 
    .page-promotions-faq {
        padding: 40px 0;
    }
    .page-promotions-section-title {
        font-size: 1.5em;
    }
    .page-promotions-card-title {
        font-size: 1.1em;
    }
    .page-promotions-card-description {
        font-size: 0.9em;
    }
    .page-promotions-faq-question {
        font-size: 1.1em;
    }
}