/* In-Depth Section Styles */
.indepth-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.indepth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.indepth-content {
    max-width: 900px;
    margin: 0 auto;
}

.indepth-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: var(--color-text-primary);
}

.indepth-title-highlight {
    color: var(--color-primary);
}

.indepth-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 60px 0;
}

.indepth-body {
    margin-top: 60px;
}

.indepth-heading {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.indepth-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.indepth-text p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin: 0;
}

/* In-Depth Section Responsive */
@media (max-width: 1024px) {
    .indepth-section {
        padding: 80px 0;
    }

    .indepth-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .indepth-section {
        padding: 60px 0;
    }

    .indepth-title {
        margin-bottom: 16px;
    }

    .indepth-subtitle {
        margin-bottom: 40px;
        font-size: 16px;
    }

    .indepth-body {
        margin-top: 40px;
    }

    .indepth-heading {
        margin-bottom: 24px;
        font-size: 28px;
    }

    .indepth-text {
        gap: 20px;
    }

    .indepth-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .indepth-section {
        padding: 50px 0;
    }

    .indepth-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .indepth-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .indepth-body {
        margin-top: 35px;
    }

    .indepth-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .indepth-text {
        gap: 18px;
    }

    .indepth-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}


