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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #2D3E50 0%, #F39C12 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-promotions__hero-content {
    max-width: 800px;
    z-index: 1;
}

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

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-promotions__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
    transform: translateX(50%) translateY(50%) rotate(15deg);
}

.page-promotions__hero-image .page-promotions__img {
    width: 100%;
    height: auto;
}

.page-promotions__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-promotions__section:nth-of-type(odd) {
    background-color: #fcfcfc;
}

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

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

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

.page-promotions__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

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

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

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-promotions__btn--primary {
    background-color: #F39C12;
    color: #ffffff;
    border: 2px solid #F39C12;
}

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

.page-promotions__btn--secondary {
    background-color: #2D3E50;
    color: #ffffff;
    border: 2px solid #2D3E50;
}

.page-promotions__btn--secondary:hover {
    background-color: #1a2a38;
    border-color: #1a2a38;
    transform: translateY(-2px);
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__list li {
    background-color: #f8f8f8;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #F39C12;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 1.05em;
    color: #444;
}

.page-promotions__list li strong {
    color: #2D3E50;
}

.page-promotions__numbered-list {
    list-style: none;
    counter-reset: my-counter;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__numbered-list li {
    counter-increment: my-counter;
    background-color: #f8f8f8;
    margin-bottom: 15px;
    padding: 20px 20px 20px 60px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    font-size: 1.05em;
    color: #444;
}

.page-promotions__numbered-list li::before {
    content: counter(my-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F39C12;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
}

.page-promotions__cta-final {
    background: linear-gradient(to right, #2D3E50, #4A6070);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    margin-top: 40px;
}

.page-promotions__cta-content {
    max-width: 900px;
}

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

.page-promotions__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-intro {
        font-size: 1em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card {
        padding: 25px;
    }
    .page-promotions__card-icon {
        width: 70px;
        height: 70px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__hero-image {
        display: none;
    }
    .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 40px 0;
        min-height: 300px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .page-promotions__section {
        padding: 30px 0;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__list li,
    .page-promotions__numbered-list li {
        padding: 15px 15px 15px 50px;
        font-size: 0.95em;
    }
    .page-promotions__numbered-list li::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
        left: 15px;
    }
    .page-promotions__cta-final {
        padding: 50px 0;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
}