/* 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, #0A2239, #3A506B);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-promotions__cta-button {
    display: inline-block;
    background-color: #E0B400;
    color: #0A2239;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E0B400;
}

.page-promotions__cta-button:hover {
    background-color: #c9a000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
}

.page-promotions__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-promotions__cta-button--secondary {
    background-color: transparent;
    color: #E0B400;
    border-color: #E0B400;
    margin-left: 20px;
}

.page-promotions__cta-button--secondary:hover {
    background-color: #E0B400;
    color: #0A2239;
}

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

.page-promotions__section:nth-child(even) {
    background-color: #f0f4f7;
}

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

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B400;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-promotions__subsection-title {
    font-size: 1.8em;
    color: #0A2239;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #E0B400;
    padding-left: 15px;
}

.page-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-promotions__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-promotions__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions__list li strong {
    color: #0A2239;
}

.page-promotions__ordered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-promotions__ordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions__ordered-list li strong {
    color: #0A2239;
}

.page-promotions__ordered-list li p {
    margin-top: 5px;
    margin-left: 25px;
    font-size: 1em;
    color: #666;
}

.page-promotions__ordered-list li a {
    color: #E0B400;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 70%;
}

.page-promotions__image--left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    max-width: 40%;
}

.page-promotions__image--right {
    float: right;
    margin-left: 25px;
    margin-bottom: 15px;
    max-width: 40%;
}

.page-promotions__offer-card {
    clear: both;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.page-promotions__offer-card:last-child {
    margin-bottom: 0;
}

.page-promotions__offer-card .page-promotions__subsection-title {
    margin-top: 0;
}

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

.page-promotions__offer-card-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__card-title {
    font-size: 1.4em;
    color: #0A2239;
    padding: 15px 20px 10px 20px;
    margin-bottom: 0;
}

.page-promotions__card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #E0B400;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #666;
    padding: 0 20px 15px 20px;
    flex-grow: 1;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #0A2239;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 20px 20px 20px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__card-button:hover {
    background-color: #1A3A5B;
    transform: translateY(-2px);
}

.page-promotions__safety-tips ul {
    list-style: none;
    padding-left: 0;
}

.page-promotions__safety-tips ul li {
    background-color: #f9f9f9;
    border-left: 4px solid #E0B400;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions__safety-tips ul li strong {
    color: #0A2239;
}

.page-promotions__final-cta {
    text-align: center;
    background: linear-gradient(to right, #0A2239, #1A3A5B);
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions__final-cta .page-promotions__section-title {
    color: #E0B400;
}

.page-promotions__final-cta .page-promotions__section-title::after {
    background-color: #ffffff;
}

.page-promotions__final-cta .page-promotions__text-content {
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
}

.page-promotions__cta-buttons-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__subsection-title {
        font-size: 1.6em;
    }
    .page-promotions__image--left, .page-promotions__image--right {
        float: none;
        margin: 0 auto 20px auto;
        max-width: 80%;
        display: block;
    }
    .page-promotions__offer-card {
        text-align: center;
    }
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__subsection-title {
        font-size: 1.4em;
    }
    .page-promotions__cta-button--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }
    .page-promotions__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    .page-promotions__cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__text-content, .page-promotions__list li, .page-promotions__ordered-list li {
        font-size: 0.95em;
    }
    .page-promotions__cta-button {
        width: 90%;
        box-sizing: border-box;
    }
    .page-promotions__cta-button--secondary {
        margin-top: 10px;
    }
    .page-promotions__image--center {
        max-width: 95%;
    }
}