﻿:root {
    --primary: #43BAFF;
    --main-dark: #19272B;
    --stroke-2: #FFFFFF26;
    --surface: #E1F2F2;
    --white: #FFFFFF;
    --dark-2: #142125;
    --main-blue-1: #086AD8;
}
.hero-image {
    margin: 0 auto;
    padding: 20px;
}

    .hero-image svg {
        width: 100%;
        height: auto;
    }

/* Section */

.section-alt {
    background: var(--main-dark);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Service Description */
.service-description {
    max-width: 900px;
    margin: 0 auto;
}

    .service-description p {
        font-size: 16px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.8;
    }

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--stroke-2);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon svg {
        width: 30px;
        height: 30px;
        stroke: var(--white);
    }

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(304px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--stroke-2);
    border-left: 4px solid var(--primary);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .benefit-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .benefit-card p {
        line-height:1.6;
    }

/* Process Steps */
.process-steps {
    max-width: 900px;
    margin: 50px auto 0;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 60px;
        width: 2px;
        height: calc(100% - 20px);
        background: var(--primary);
        opacity: 0.3;
    }

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height:1.6;
}

/* Related Services */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.related-card {
    background: var(--stroke-2);
    border: 1px solid var(--dark-2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

    .related-card svg {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        stroke: var(--primary);
    }

    .related-card h4 {
        font-size: 18px;
        font-weight: 700;
        line-height:1.6;
    }

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--stroke-2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--main-dark);
    transition: background 0.3s;
}

    .faq-question:hover {
        background: var(--surface);
    }

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Responsive Media Queries */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {
    .section {
        padding: 60px 20px;
    }

    .heading,
    .section-title {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .section {
        padding: 50px 15px;
    }

    .heading,
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-card {
        padding: 25px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .benefit-card {
        padding: 25px;
    }

    .process-steps {
        margin-top: 40px;
    }

    .step {
        gap: 20px;
        margin-bottom: 35px;
    }

        .step:not(:last-child)::after {
            left: 20px;
        }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step-content h4 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .related-card {
        padding: 25px;
    }

    .faq-container {
        margin-top: 40px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 20px 18px;
        font-size: 14px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .hero-image {
        padding: 15px;
    }

    .section {
        padding: 40px 15px;
    }

    .heading,
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .feature-card,
    .benefit-card,
    .related-card {
        padding: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

        .feature-icon svg {
            width: 25px;
            height: 25px;
        }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p,
    .benefit-card p {
        font-size: 14px;
    }

    .benefit-card h4 {
        font-size: 16px;
    }

    .step {
        gap: 15px;
    }

        .step:not(:last-child)::after {
            left: 17px;
        }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card svg {
        width: 40px;
        height: 40px;
    }

    .related-card h4 {
        font-size: 16px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .faq-answer-content {
        padding: 0 15px 15px;
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .section {
        padding: 30px 10px;
    }

    .heading,
    .section-title {
        font-size: 22px;
    }

    .feature-grid,
    .benefits-grid,
    .related-grid {
        gap: 15px;
        padding: 0 10px;
    }

    .service-description,
    .process-steps,
    .faq-container {
        padding: 0 10px;
    }
}