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

.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4,
.page-promotions p,
.page-promotions a,
.page-promotions li,
.page-promotions button {
    color: inherit;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #0047AB 0%, #00287A 100%);
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

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

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

.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;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

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

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

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

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

.page-promotions__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #0047AB;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.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__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: #555;
}

.page-promotions__overview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-promotions__promo-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    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.1);
}

.page-promotions__promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-promotions__why-choose {
    padding: 80px 0;
    background-color: #f0f4f8;
}

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

.page-promotions__why-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-promotions__why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions__why-item h3 {
    font-size: 1.3em;
    color: #0047AB;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__why-item p {
    color: #666;
    font-size: 0.9em;
}

.page-promotions__why-conclusion {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 50px auto 0 auto;
    color: #444;
    font-style: italic;
}

.page-promotions__guide {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-promotions__step-card {
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.page-promotions__step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.page-promotions__step-card h3 {
    font-size: 1.4em;
    color: #0047AB;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__step-card p {
    color: #666;
    font-size: 0.95em;
}

.page-promotions__step-card p a {
    color: #0047AB;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-promotions__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.page-promotions__cta-bottom p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.page-promotions__faq {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions__accordion-item:last-child {
    border-bottom: none;
}

.page-promotions__accordion-header {
    background-color: #0047AB;
    color: #ffffff;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.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 {
    background-color: #fdfdfd;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #444;
}

.page-promotions__accordion-content p {
    padding: 20px 0;
    margin: 0;
    font-size: 0.95em;
}

.page-promotions__accordion-content p a {
    color: #0047AB;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions__accordion-content p a:hover {
    color: #FFD700;
}

.page-promotions__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border: 2px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    animation: page-promotions-fadeInUp 0.5s ease-out;
}

@keyframes page-promotions-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-promotions__close-ad-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.page-promotions__close-ad-btn:hover {
    color: #333;
}

.page-promotions__floating-ad-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-promotions__floating-ad-content h4 {
    font-size: 1.2em;
    color: #0047AB;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.page-promotions__floating-ad-content p {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid,
    .page-promotions__why-grid,
    .page-promotions__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 15px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 1em;
    }
    .page-promotions__overview,
    .page-promotions__why-choose,
    .page-promotions__guide,
    .page-promotions__faq {
        padding: 60px 0;
    }
    .page-promotions__promo-card,
    .page-promotions__why-item,
    .page-promotions__step-card {
        padding: 25px;
    }
    .page-promotions__floating-ad {
        width: 280px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .page-promotions__hero {
        padding: 60px 10px;
        min-height: 300px;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__section-description {
        font-size: 0.9em;
    }
    .page-promotions__promo-grid,
    .page-promotions__why-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-icon {
        width: 60px;
        height: 60px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__why-icon,
    .page-promotions__step-icon {
        width: 50px;
        height: 50px;
    }
    .page-promotions__why-item h3,
    .page-promotions__step-card h3 {
        font-size: 1.2em;
    }
    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content p {
        padding: 15px 0;
        font-size: 0.9em;
    }
    .page-promotions__floating-ad {
        width: 90%;
        max-width: 300px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        padding: 10px;
    }
    .page-promotions__floating-ad-img {
        height: 120px;
    }
    .page-promotions__floating-ad-content h4 {
        font-size: 1.1em;
    }
    .page-promotions__floating-ad-content p {
        font-size: 0.85em;
    }
}