.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: 20px;
}

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

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

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

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

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 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, transform 0.2s ease;
    font-size: 1em;
    cursor: pointer;
}

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

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

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

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

.page-promotions__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-promotions__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-promotions__intro {
    background-color: #f0f4f8;
}

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

.page-promotions__section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions__intro p {
    font-size: 1.1em;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

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

.page-promotions__promo-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-card h3 {
    font-size: 1.5em;
    color: #003366;
    margin: 25px 15px 15px;
}

.page-promotions__promo-card h3 a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.page-promotions__promo-card h3 a:hover {
    color: #FFD700;
}

.page-promotions__promo-card p {
    font-size: 0.95em;
    color: #666;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn--secondary {
    margin: 0 20px 25px;
    width: calc(100% - 40px);
}

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

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

.page-promotions__tips li strong {
    color: #003366;
    font-size: 1.1em;
}

.page-promotions__faq {
    background-color: #f0f4f8;
}

.page-promotions__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    background-color: #003366;
    color: #fff;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #002244;
}

.page-promotions__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions__accordion-content {
    padding: 0 25px;
    background-color: #fdfdfd;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__accordion-content p {
    padding: 15px 0;
    color: #555;
    font-size: 1em;
}

.page-promotions__accordion-header.active + .page-promotions__accordion-content {
    max-height: 200px; /* Adjust as needed for content height */
    padding: 15px 25px;
}

.page-promotions__conclusion {
    text-align: center;
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.page-promotions__conclusion h2 {
    color: #FFD700;
}

.page-promotions__conclusion p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero h1 {
        font-size: 2.5em;
    }

    .page-promotions__hero p {
        font-size: 1em;
    }

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

    .page-promotions__grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__promo-card h3 {
        font-size: 1.3em;
    }

    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-promotions__accordion-content {
        padding: 0 20px;
    }

    .page-promotions__accordion-content p {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }

    .page-promotions__hero h1 {
        font-size: 2em;
    }

    .page-promotions__hero p {
        font-size: 0.9em;
    }

    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-promotions__section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-promotions__intro p {
        font-size: 0.95em;
    }

    .page-promotions__promo-card h3 {
        font-size: 1.2em;
    }

    .page-promotions__promo-card p {
        font-size: 0.9em;
    }

    .page-promotions__tips li {
        font-size: 0.95em;
        padding: 15px;
    }

    .page-promotions__accordion-header {
        font-size: 0.95em;
        padding: 12px 15px;
    }

    .page-promotions__accordion-content {
        padding: 0 15px;
    }

    .page-promotions__accordion-content p {
        padding: 8px 0;
    }

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