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

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

.page-promotions__container--flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #003366, #1a4a80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFCC00;
}

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-promotions__section--dark {
    background-color: #f0f4f8;
}

.page-promotions__section--last {
    border-bottom: none;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #003366;
    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: #FFCC00;
    border-radius: 2px;
}

.page-promotions__description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

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

.page-promotions__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

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

.page-promotions__button--primary {
    background-color: #FFCC00;
    color: #003366;
    border: 2px solid #FFCC00;
}

.page-promotions__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
}

.page-promotions__button--secondary {
    background-color: #003366;
    color: #FFCC00;
    border: 2px solid #003366;
}

.page-promotions__button--secondary:hover {
    background-color: #002244;
    border-color: #002244;
}

.page-promotions__button--outline {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-promotions__button--outline:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-promotions__button--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-promotions__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-promotions__button--center {
    display: block;
    margin: 40px auto 0 auto;
    width: fit-content;
}

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

.page-promotions__detail-item {
    background-color: #fff;
    border-left: 5px solid #FFCC00;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions__detail-title a:hover {
    color: #FFCC00;
}

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

.page-promotions__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #444;
}

.page-promotions__list-icon {
    color: #FFCC00;
    font-size: 1.5em;
    margin-right: 15px;
}

.page-promotions__list-strong {
    color: #003366;
}

.page-promotions__section--cta {
    background-color: #003366;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-promotions__cta-content {
    flex: 2;
    text-align: left;
}

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

.page-promotions__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    line-height: 1.8;
}

.page-promotions__cta-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

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

.page-promotions__step-card {
    background-color: #f0f4f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions__step-title {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

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

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

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

.page-promotions__note {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 40px;
    font-size: 0.95em;
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions__terms-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 4px solid #FFCC00;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-promotions__terms-strong {
    color: #003366;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.2em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__description {
        font-size: 1em;
    }
    .page-promotions__cta-content {
        text-align: center;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__cta-actions {
        align-items: center;
        width: 100%;
    }
    .page-promotions__container--flex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .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__card {
        padding: 20px;
    }
    .page-promotions__card-title {
        font-size: 1.5em;
    }
    .page-promotions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .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__section-title {
        font-size: 1.5em;
    }
    .page-promotions__description {
        font-size: 0.9em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__list li, .page-promotions__terms-list li {
        font-size: 1em;
        padding: 15px;
    }
    .page-promotions__cta-title {
        font-size: 1.5em;
    }
    .page-promotions__cta-description {
        font-size: 0.9em;
    }
    .page-promotions__button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}