/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a5f);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #f5e6d0;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
    transform: scale(1.1);
}

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

.page-promotions__intro,
.page-promotions__conclusion {
    padding: 40px 0;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-promotions__intro p,
.page-promotions__conclusion p {
    max-width: 900px;
    margin: 20px auto;
}

.page-promotions__why-us {
    padding: 60px 0;
    background-color: #1a2a47;
}

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

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

.page-promotions__why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__why-item-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__why-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

.page-promotions__types {
    padding: 60px 0;
}

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

.page-promotions__list li {
    background-color: #1a2a47;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-promotions__list li:hover {
    background-color: #2a3d5c;
}

.page-promotions__list-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__list li p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
}

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

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-promotions__steps-list li {
    background-color: #1a2a47;
    margin-bottom: 30px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-promotions__steps-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__steps-list li p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-promotions__current-offers {
    padding: 60px 0;
    background-color: #1a2a47;
}

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

.page-promotions__offer-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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.4);
}

.page-promotions__offer-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__offer-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__offer-title a:hover {
    text-decoration: underline;
}

.page-promotions__offer-description {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.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;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    font-size: 1.1em;
}

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

.page-promotions__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 1px solid #FFD700;
    font-size: 1em;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
    background-color: #FFD700;
    color: #0A192F;
}

.page-promotions__btn--small:hover {
    background-color: #e6c200;
}

.page-promotions__app-download {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A192F, #1a2a47);
}

.page-promotions__app-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-promotions__app-content {
    flex: 1;
}

.page-promotions__app-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-promotions__contact {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__contact p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 800px;
    margin: 20px auto 40px;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
}

.page-promotions__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__image--mt {
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__app-flex {
        flex-direction: column;
        text-align: center;
    }
}

@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-title {
        font-size: 1.8em;
    }
    .page-promotions__grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__why-item,
    .page-promotions__list li,
    .page-promotions__steps-list li,
    .page-promotions__offer-card {
        padding: 25px;
    }
    .page-promotions__why-item-title,
    .page-promotions__list-title,
    .page-promotions__steps-title {
        font-size: 1.4em;
    }
    .page-promotions__btn--primary,
    .page-promotions__btn--secondary {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
        margin: 40px 0 30px;
    }
    .page-promotions__intro,
    .page-promotions__conclusion {
        padding: 30px 0;
        font-size: 1em;
    }
    .page-promotions__grid,
    .page-promotions__offer-grid {
        gap: 20px;
    }
    .page-promotions__why-item,
    .page-promotions__list li,
    .page-promotions__steps-list li,
    .page-promotions__offer-card {
        padding: 20px;
    }
    .page-promotions__steps-title {
        font-size: 1.6em;
    }
    .page-promotions__app-download,
    .page-promotions__contact {
        padding: 40px 0;
    }
}