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

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
    opacity: 0.3;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-promotions__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

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

.page-promotions__btn--primary {
    background-color: #ffc107; /* Auxiliary color for CTA */
    color: #0056b3; /* Darker text for contrast */
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #007bff; /* Primary color */
    color: #fff;
    border: 1px solid #007bff;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
    margin-right: 10px;
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 60px;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-promotions__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__intro-section,
.page-promotions__types-section,
.page-promotions__details-section,
.page-promotions__guide-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__intro-section {
    background-color: #f0f8ff; /* Light blue background for intro */
    padding: 80px 0;
}

.page-promotions__intro-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-promotions__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__type-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
}

.page-promotions__type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__type-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions__type-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__type-description {
    color: #666;
    font-size: 1em;
}

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

.page-promotions__promotion-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

.page-promotions__promotion-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-promotions__promotion-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.page-promotions__promotion-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__promotion-title a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.page-promotions__promotion-title a:hover {
    color: #ffc107;
}

.page-promotions__promotion-description {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: justify;
}

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

.page-promotions__step-card {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions__step-description {
    color: #666;
    font-size: 1em;
}

.page-promotions__step-description a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__step-description a:hover {
    text-decoration: underline;
}

.page-promotions__cta-box {
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__cta-box p {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 300;
}

.page-promotions__terms-content ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #444;
}

.page-promotions__terms-content ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions__terms-content strong {
    color: #007bff;
}

.page-promotions__terms-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
    color: #444;
}

.page-promotions__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #ffc107;
    transition: transform 0.3s ease;
}

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

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

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

.page-promotions__cta-bottom-section {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
    color: #ffc107;
    font-size: 3em;
}

.page-promotions__cta-bottom-section .page-promotions__section-title::after {
    background-color: #fff;
}

.page-promotions__cta-bottom-section .page-promotions__section-description {
    color: #eee;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promotion-card {
        flex-direction: column;
    }
    .page-promotions__promotion-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promotion-content {
        padding: 20px;
    }
    .page-promotions__promotion-title {
        font-size: 1.5em;
    }
    .page-promotions__step-card {
        padding-top: 40px;
    }
    .page-promotions__step-number {
        top: -20px;
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-promotions__cta-box p {
        font-size: 1.2em;
    }
    .page-promotions__terms-content ul {
        margin-left: 0;
        padding-left: 20px;
    }
    .page-promotions__cta-bottom-section .page-promotions__section-title {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__type-card, .page-promotions__promotion-card {
        padding: 20px;
    }
    .page-promotions__promotion-image {
        height: 180px;
    }
    .page-promotions__promotion-title {
        font-size: 1.3em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__cta-bottom-section .page-promotions__section-title {
        font-size: 2em;
    }
}