/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A2342; /* Deep Sea Blue */
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1F4B80 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px; /* Adjust for container padding */
}

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

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

.page-promotions__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px; /* Adjust for container padding */
}

.page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

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

.page-promotions__section:nth-of-type(even) {
    background-color: #1a3a5e; /* Slightly lighter dark blue for contrast */
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Gold */
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-promotions__text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #c0c0c0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-promotions__list li {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
}

.page-promotions__icon {
    color: #E0B400; /* Gold checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promotions__icon--check::before {
    content: '✔';
}

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

.page-promotions__btn--primary {
    background-color: #E0B400; /* Gold */
    color: #0A2342; /* Deep Sea Blue */
}

.page-promotions__btn--primary:hover {
    background-color: #FFD700; /* Brighter gold */
    transform: translateY(-2px);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Gold */
    border: 2px solid #E0B400;
}

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

.page-promotions__btn--card {
    background-color: #E0B400; /* Gold */
    color: #0A2342; /* Deep Sea Blue */
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

.page-promotions__btn--card:hover {
    background-color: #FFD700;
    transform: translateY(-1px);
}

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

.page-promotions__card {
    background-color: #1a3a5e; /* Slightly lighter dark blue */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-promotions__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #E0B400; /* Gold */
    margin-bottom: 10px;
}

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

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

.page-promotions__category-item {
    background-color: #0A2342; /* Deep Sea Blue */
    border: 1px solid #E0B400; /* Gold border */
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__category-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.page-promotions__category-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-promotions__category-title a {
    color: #E0B400; /* Gold */
    text-decoration: none;
}

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

.page-promotions__category-description {
    font-size: 0.95em;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.page-promotions__btn--category {
    background-color: #E0B400; /* Gold */
    color: #0A2342; /* Deep Sea Blue */
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-promotions__btn--category:hover {
    background-color: #FFD700;
}

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

.page-promotions__step-item {
    background-color: #1a3a5e; /* Slightly lighter dark blue */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #E0B400; /* Gold */
    color: #0A2342; /* Deep Sea Blue */
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #E0B400; /* Gold */
    margin-bottom: 15px;
}

.page-promotions__step-description {
    font-size: 1em;
    color: #c0c0c0;
}

.page-promotions__step-description a {
    color: #E0B400; /* Gold link */
    text-decoration: underline;
}

.page-promotions__step-description a:hover {
    color: #FFD700;
}

.page-promotions__illustration {
    max-width: 80%;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.page-promotions__btn--center {
    margin: 30px auto 0 auto;
    display: block;
    max-width: 350px;
}

.page-promotions__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-promotions__faq-item {
    background-color: #1a3a5e; /* Slightly lighter dark blue */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #E0B400; /* Gold */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #c0c0c0;
    margin-top: 15px;
    display: none;
    line-height: 1.7;
}

.page-promotions__faq-answer.active {
    display: block;
}

.page-promotions__cta-bottom {
    background: linear-gradient(90deg, #0A2342, #E0B400);
    padding: 60px 0;
    text-align: center;
}

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

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #0A2342; /* Deep Sea Blue on Gold gradient */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.5);
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #0A2342; /* Deep Sea Blue on Gold gradient */
    margin-bottom: 40px;
}

/* Highlight span for keywords */
.page-promotions .highlight {
    color: #E0B400;
    font-weight: bold;
}

.page-promotions__cta-bottom .highlight {
    color: #0A2342;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-promotions__hero-content,
    .page-promotions__hero-image-wrapper {
        padding: 0 20px;
    }

    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__card-grid,
    .page-promotions__category-grid,
    .page-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 40px 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__text {
        font-size: 0.95em;
    }

    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions__card-grid,
    .page-promotions__category-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__cta-title {
        font-size: 2em;
    }

    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }

    .page-promotions__section-title {
        font-size: 1.5em;
    }

    .page-promotions__btn {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-promotions__list li {
        font-size: 0.95em;
    }

    .page-promotions__card-title {
        font-size: 1.4em;
    }

    .page-promotions__category-title {
        font-size: 1.2em;
    }

    .page-promotions__step-title {
        font-size: 1.3em;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__cta-title {
        font-size: 1.8em;
    }
}