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

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

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

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

.page-promotions__section-title {
    font-size: 2.5rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    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: #ffc107;
    border-radius: 2px;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions__hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffc107; /* WCAG AA: #ffc107 on #007bff -> 4.5:1 is not met. Adjusting to a lighter color for text on dark blue. Let's use #fff for text and #ffc107 for highlight. */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-promotions__button {
    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;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.page-promotions__button--primary {
    background-color: #ffc107;
    color: #333;
}

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

.page-promotions__button--secondary {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.page-promotions__button--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-promotions__button--hero {
    padding: 15px 35px;
    font-size: 1.3rem;
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__button--hero:hover {
    background-color: #e0a800;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-promotions__why-choose-us-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-promotions__why-choose-us-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions__why-choose-us-content ul li {
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
}

.page-promotions__why-choose-us-content ul li strong {
    color: #007bff;
}

.page-promotions__why-choose-us-image-wrapper {
    text-align: center;
}

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

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

.page-promotions__offer-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    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.15);
}

.page-promotions__offer-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.page-promotions__offer-card-title {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-promotions__offer-card-description {
    font-size: 1rem;
    color: #555;
    padding: 0 20px;
    text-align: justify;
}

.page-promotions__offer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-promotions__offer-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .page-promotions__offer-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.page-promotions__offer-details {
    flex-grow: 1;
}

.page-promotions__offer-item-title {
    font-size: 1.6rem;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions__offer-item-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__offer-item-title a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.page-promotions__offer-item-description {
    font-size: 1rem;
    color: #666;
}

.page-promotions__offer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
}

@media (min-width: 768px) {
    .page-promotions__offer-actions {
        flex-direction: row;
    }
}

.page-promotions__guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-promotions__guide-grid {
        grid-template-columns: 1fr 2fr;
    }
    .page-promotions__guide-grid:nth-child(odd) {
        grid-template-columns: 2fr 1fr;
    }
}

.page-promotions__guide-content ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-promotions__guide-content ol li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #444;
}

.page-promotions__guide-content ol li strong {
    color: #007bff;
}

.page-promotions__terms ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-promotions__terms ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #555;
}

.page-promotions__terms p {
    font-size: 1.1rem;
    text-align: justify;
}

.page-promotions__cta {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions__cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__cta-title {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 20px;
}

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

.page-promotions__button--large {
    padding: 18px 40px;
    font-size: 1.4rem;
}

.page-promotions__cta-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 3rem;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.3rem;
    }
    .page-promotions__section-title {
        font-size: 2rem;
    }
    .page-promotions__cta-title {
        font-size: 2.5rem;
    }
    .page-promotions__cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.5rem;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1rem;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-promotions__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__offer-card-title {
        font-size: 1.5rem;
    }
    .page-promotions__offer-item {
        padding: 20px;
    }
    .page-promotions__offer-item-title {
        font-size: 1.4rem;
    }
    .page-promotions__offer-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .page-promotions__button {
        width: 100%;
    }
    .page-promotions__cta {
        padding: 60px 0;
    }
    .page-promotions__cta-title {
        font-size: 2rem;
    }
    .page-promotions__cta-description {
        font-size: 1rem;
    }
    .page-promotions__button--large {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2rem;
    }
    .page-promotions__hero-subtitle {
        font-size: 1rem;
    }
    .page-promotions__button--hero {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    .page-promotions__section-title {
        font-size: 1.5rem;
    }
    .page-promotions__offer-card-title {
        font-size: 1.3rem;
    }
    .page-promotions__offer-item-title {
        font-size: 1.2rem;
    }
    .page-promotions__cta-title {
        font-size: 1.8rem;
    }
}