/* 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__hero-section {
    background: linear-gradient(135deg, #00A86B, #2ECC71); /* Green gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

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

.page-promotions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0ffe0;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #333; /* Dark text for contrast */
    border: none;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: #00A86B; /* Green */
    color: #fff;
    border: 1px solid #00A86B;
}

.page-promotions__btn--secondary:hover {
    background-color: #008f5d;
    transform: translateY(-2px);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #00A86B;
    text-align: center;
    margin-bottom: 50px;
    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: #FFD700;
    border-radius: 2px;
}

.page-promotions__intro-text {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-promotions__why-choose {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-promotions__feature-item {
    background-color: #f0fdf7; /* Lighter green tint */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    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.1);
}

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 168, 107, 0.3));
}

.page-promotions__feature-title {
    font-size: 1.8em;
    color: #00A86B;
    margin-bottom: 15px;
}

.page-promotions__feature-text {
    color: #666;
    font-size: 1em;
}

.page-promotions__current-offers {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.page-promotions__offer-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__offer-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.page-promotions__offer-title {
    font-size: 1.6em;
    color: #00A86B;
    margin-bottom: 15px;
}

.page-promotions__offer-description {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__how-to-claim {
    padding: 80px 0;
    background-color: #fff;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.page-promotions__steps-list li {
    background-color: #f0fdf7;
    border-left: 5px solid #00A86B;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__steps-list li strong {
    color: #00764b;
}

.page-promotions__steps-list li a {
    color: #00A86B;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

.page-promotions__cta-block {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background-color: #e0ffe0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__cta-block p {
    font-size: 1.4em;
    color: #005f3e;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions__terms-conditions {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.page-promotions__terms-list {
    list-style: disc inside;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
    font-size: 1.1em;
}

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

.page-promotions__terms-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__final-cta {
    padding: 80px 0;
    background-color: #00A86B;
    color: #fff;
    text-align: center;
}

.page-promotions__final-cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0ffe0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__offer-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description,
    .page-promotions__intro-text,
    .page-promotions__steps-list li,
    .page-promotions__cta-block p,
    .page-promotions__terms-list li,
    .page-promotions__final-cta-text {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions__why-choose,
    .page-promotions__current-offers,
    .page-promotions__how-to-claim,
    .page-promotions__terms-conditions,
    .page-promotions__final-cta {
        padding: 60px 0;
    }
    .page-promotions__feature-item {
        padding: 25px;
    }
    .page-promotions__feature-title {
        font-size: 1.5em;
    }
    .page-promotions__offer-card {
        flex-direction: column;
    }
    .page-promotions__offer-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__features-grid,
    .page-promotions__offer-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__feature-title {
        font-size: 1.3em;
    }
    .page-promotions__cta-block p {
        font-size: 1.2em;
    }
}