/* ===================== */
/* HERO - SERVICE PAGE   */
/* ===================== */

.hero-service {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1445, #2b0f2f);
    padding: 20px;
}

.hero-service-content h1 {
    font-size: 52px;
    color: #f5c542;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-service-content p {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 30px;
}

.hero-service-content button {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.hero-service-content button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* INTRO SECTION        */
/* ===================== */

.intro-section {
    padding: 60px 20px;
    background: #ffffff;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-question h2 {
    font-size: 28px;
    color: #67047a;
    line-height: 1.4;
    margin: 0;
}

.intro-answer h3 {
    font-size: 24px;
    color: #67047a;
    margin-bottom: 15px;
}

.intro-answer p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.intro-answer strong {
    color: #f5c542;
}

/* ===================== */
/* SERVICE DESCRIPTION  */
/* ===================== */

.service-description {
    padding: 80px 20px;
    background: #ffffff;
    color: #2b0f2f;
}

.service-container {
    max-width: 900px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: 40px;
    color: #67047a;
    margin-bottom: 30px;
    text-align: center;
}

.service-description h3 {
    font-size: 28px;
    color: #67047a;
    margin-top: 40px;
    margin-bottom: 25px;
}

.service-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-description strong {
    color: #f5c542;
}

/* ===================== */
/* BENEFITS LIST        */
/* ===================== */

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    background: #f9f7f3;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #f5c542;
}

.benefits-list li {
    font-size: 16px;
    color: #2b0f2f;
    margin: 12px 0;
    line-height: 1.6;
}

/* ===================== */
/* HIGHLIGHT BOX        */
/* ===================== */

.highlight-box {
    background: #f9f7f3;
    border: 2px solid #f5c542;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
}

.highlight-box p {
    font-size: 16px;
    color: #666666;
    margin: 15px 0;
}

.highlight-box p:first-child {
    margin-top: 0;
}

.highlight-box .emphasis {
    color: #67047a;
    font-weight: bold;
    font-size: 18px;
}

/* ===================== */
/* COMPARISON BOX       */
/* ===================== */

.comparison-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    background: #f9f7f3;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f5c542;
}

.comparison-item {
    text-align: center;
}

.comparison-item h4 {
    font-size: 18px;
    color: #67047a;
    margin-bottom: 12px;
}

.comparison-item p {
    font-size: 15px;
    color: #666666;
    margin: 0;
}

.comparison-arrow {
    font-size: 32px;
    color: #f5c542;
    text-align: center;
}

/* ===================== */
/* IDEAL FOR LIST       */
/* ===================== */

.ideal-for {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ideal-for li {
    font-size: 15px;
    color: #666666;
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
}

.ideal-for li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #f5c542;
    font-weight: bold;
}

/* ===================== */
/* CTA BOX              */
/* ===================== */

.cta-box {
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(61, 20, 69, 0.05));
    border: 2px solid #f5c542;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.cta-box h3 {
    font-size: 28px;
    color: #67047a;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.cta-button {
    padding: 14px 40px;
    background: #f5c542;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #2b0f2f;
}

.cta-button:hover {
    background: #ffd86b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 197, 66, 0.3);
}

/* ===================== */
/* SERVICE CONTENT       */
/* ===================== */

.service-content {
    padding: 80px 20px;
    background: #ffffff;
    color: #2b0f2f;
}

.service-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-image-left {
    text-align: center;
}

.service-image-left img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(245, 197, 66, 0.15);
    transition: transform 0.3s ease;
}

.service-image-left img:hover {
    transform: scale(1.02);
}

.service-content-right h2 {
    font-size: 36px;
    color: #67047a;
    margin-bottom: 30px;
    margin-top: 0;
}

.service-content-right .benefits-list {
    margin-top: 25px;
}

/* ===================== */
/* RESPONSIVE           */
/* ===================== */

@media (max-width: 768px) {

    .hero-service {
        height: 50vh;
    }

    .hero-service-content h1 {
        font-size: 36px;
    }

    .hero-service-content p {
        font-size: 16px;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-question h2 {
        font-size: 22px;
    }

    .intro-answer h3 {
        font-size: 20px;
    }

    .intro-answer p {
        font-size: 15px;
    }

    .service-description {
        padding: 60px 15px;
    }

    .service-description h2 {
        font-size: 32px;
    }

    .service-description h3 {
        font-size: 22px;
    }

    .service-description p {
        font-size: 15px;
    }

    .comparison-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .cta-box {
        padding: 25px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .service-content {
        padding: 60px 15px;
    }

    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-image-left img {
        max-width: 350px;
    }

    .service-content-right h2 {
        font-size: 28px;
    }

}

@media (max-width: 480px) {

    .hero-service {
        height: 40vh;
    }

    .hero-service-content h1 {
        font-size: 26px;
    }

    .hero-service-content p {
        font-size: 14px;
    }

    .intro-section {
        padding: 40px 15px;
    }

    .intro-question h2 {
        font-size: 18px;
    }

    .intro-answer h3 {
        font-size: 16px;
    }

    .intro-answer p {
        font-size: 14px;
    }

    .service-description {
        padding: 40px 10px;
    }

    .service-description h2 {
        font-size: 24px;
    }

    .service-description h3 {
        font-size: 18px;
    }

    .service-description p {
        font-size: 13px;
    }

    .benefits-list {
        padding: 20px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .highlight-box {
        padding: 20px;
    }

    .comparison-box {
        padding: 20px;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-box h3 {
        font-size: 18px;
    }

    .service-content {
        padding: 40px 10px;
    }

    .service-content-wrapper {
        gap: 15px;
    }

    .service-image-left img {
        max-width: 220px;
    }

    .service-content-right h2 {
        font-size: 22px;
    }

}