/* style/jun88-58k-promotion.css */
.page-jun88-58k-promotion {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-jun88-58k-promotion__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-jun88-58k-promotion__container--center {
    text-align: center;
}

.page-jun88-58k-promotion__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-jun88-58k-promotion__section:nth-of-type(even) {
    background-color: #f2f7fb; /* Light blueish background for alternating sections */
}

.page-jun88-58k-promotion__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-jun88-58k-promotion__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-jun88-58k-promotion__hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-jun88-58k-promotion__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-jun88-58k-promotion__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.7), rgba(255, 215, 0, 0.5));
    z-index: 2;
}

.page-jun88-58k-promotion__hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.page-jun88-58k-promotion__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-jun88-58k-promotion__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-jun88-58k-promotion__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark Blue */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-jun88-58k-promotion__cta-button:hover {
    background-color: #e6c200; /* Darker Gold */
    transform: translateY(-3px);
    border-color: #003366;
}

.page-jun88-58k-promotion__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-jun88-58k-promotion__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    margin: 20px 0;
    background-color: #DC143C; /* Crimson for main CTA */
    color: #fff;
    border-color: #DC143C;
}

.page-jun88-58k-promotion__cta-button--large:hover {
    background-color: #b20e2f;
    border-color: #b20e2f;
}

.page-jun88-58k-promotion__cta-button--secondary {
    background-color: #003366;
    color: #FFD700;
    border-color: #003366;
    margin-left: 15px;
}

.page-jun88-58k-promotion__cta-button--secondary:hover {
    background-color: #002244;
    color: #FFD700;
    border-color: #002244;
}

.page-jun88-58k-promotion__intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
    color: #555;
}

.page-jun88-58k-promotion__callout {
    background-color: #e6f2ff; /* Light blue */
    border-left: 5px solid #003366;
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-jun88-58k-promotion__callout p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #003366;
}

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

.page-jun88-58k-promotion__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jun88-58k-promotion__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-jun88-58k-promotion__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-jun88-58k-promotion__step-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-jun88-58k-promotion__step-item p {
    font-size: 1em;
    color: #666;
    text-align: justify;
}

.page-jun88-58k-promotion__terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-jun88-58k-promotion__term-item {
    background-color: #fff;
    padding: 25px;
    border-left: 4px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-jun88-58k-promotion__term-item h3 {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-jun88-58k-promotion__term-item p {
    font-size: 0.95em;
    color: #555;
    text-align: justify;
}

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

.page-jun88-58k-promotion__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jun88-58k-promotion__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-jun88-58k-promotion__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-jun88-58k-promotion__feature-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-jun88-58k-promotion__feature-item p {
    font-size: 0.95em;
    color: #666;
    text-align: justify;
}

.page-jun88-58k-promotion__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-jun88-58k-promotion__tip-list li {
    background-color: #fefefe;
    border-left: 4px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    font-size: 1.05em;
    color: #333;
}

.page-jun88-58k-promotion__tip-list li strong {
    color: #003366;
}

.page-jun88-58k-promotion__faq-item {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.page-jun88-58k-promotion__faq-item h3 {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-jun88-58k-promotion__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-jun88-58k-promotion__faq-item h3.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-jun88-58k-promotion__faq-item p {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    display: none;
    text-align: justify;
}

.page-jun88-58k-promotion__faq-item p.active {
    display: block;
}

.page-jun88-58k-promotion__final-cta p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-jun88-58k-promotion__hero-title {
        font-size: 2.8em;
    }

    .page-jun88-58k-promotion__hero-subtitle {
        font-size: 1.3em;
    }

    .page-jun88-58k-promotion__section-title {
        font-size: 2em;
    }

    .page-jun88-58k-promotion__steps-grid, 
    .page-jun88-58k-promotion__terms-grid, 
    .page-jun88-58k-promotion__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-jun88-58k-promotion__hero {
        height: 400px;
    }

    .page-jun88-58k-promotion__hero-title {
        font-size: 2.2em;
    }

    .page-jun88-58k-promotion__hero-subtitle {
        font-size: 1.1em;
    }

    .page-jun88-58k-promotion__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-jun88-58k-promotion__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    .page-jun88-58k-promotion__cta-button--secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-jun88-58k-promotion__section {
        padding: 40px 0;
    }

    .page-jun88-58k-promotion__section-title {
        font-size: 1.8em;
    }

    .page-jun88-58k-promotion__intro p, 
    .page-jun88-58k-promotion__callout p {
        font-size: 1em;
    }

    .page-jun88-58k-promotion__step-item h3, 
    .page-jun88-58k-promotion__term-item h3, 
    .page-jun88-58k-promotion__feature-item h3, 
    .page-jun88-58k-promotion__faq-item h3 {
        font-size: 1.2em;
    }

    .page-jun88-58k-promotion__tip-list li, 
    .page-jun88-58k-promotion__faq-item p {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-jun88-58k-promotion__hero {
        height: 300px;
    }

    .page-jun88-58k-promotion__hero-title {
        font-size: 1.8em;
    }

    .page-jun88-58k-promotion__hero-subtitle {
        font-size: 0.9em;
    }

    .page-jun88-58k-promotion__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-jun88-58k-promotion__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-jun88-58k-promotion__cta-button--secondary {
        margin-top: 10px;
        width: 100%;
    }

    .page-jun88-58k-promotion__section-title {
        font-size: 1.5em;
    }

    .page-jun88-58k-promotion__steps-grid, 
    .page-jun88-58k-promotion__terms-grid, 
    .page-jun88-58k-promotion__features-grid {
        grid-template-columns: 1fr;
    }
    .page-jun88-58k-promotion__cta-button--small {
        width: 100%;
    }
}