.approach-hero {
    background:
        radial-gradient(circle at 30% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
        url('../resources/images/approach-hero.jpg');
    background-size: cover;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px; 
    width: 100%;
} 
.section-1{
    margin-top: 200px;
}
.approach-hero-content h1{
    font-size: var(--font-size-4xl);
}
.values-section {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
    padding-bottom: 150px;
}

.values-section::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-60%);
    width: 4px;
    height: calc(100% - 200px);
    background: var(--border-color);
}
.values-sub {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.values-sub:nth-child(even) {
    flex-direction: row-reverse;
}

.values-title {
    flex: 0 0 100px;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: var(--spacing-sm);
}

.values-content {
    flex: 1;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 0 var(--spacing-lg);
    position: relative;
}

.values-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.values-sub:nth-child(even) .values-content::before {
    right: -50px;
    margin-right: 10px;
}

.values-sub:nth-child(odd) .values-content::before {
    left: -50px;
    margin-left: 10px;
}

.values-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.6;
}

.values-sub:last-child {
    margin-bottom: 0;
}
/* ===============================
   Responsive Approach Page
   =============================== */
@media (max-width: 768px) {
    .section-1,
    .section-2 {
        margin: 40px var(--spacing-md);
        margin-top: 100px;
    }
    .approach-hero {
        height: 250px;
    }
    .values-content{
        margin: 0 var(--spacing-sm);
    }

    .values-section {
        padding: var(--spacing-lg) var(--spacing-md);
        padding-bottom: 100px;
    }

    .values-section::before {
        height: calc(100% - 150px);
    }

    .values-sub {
        margin-bottom: var(--spacing-xl);
    }
    .values-sub:nth-child(even) .values-content::before {
        right: -50px;
        margin-right: 22px;
    }

    .values-sub:nth-child(odd) .values-content::before {
        left: -50px;
        margin-left: 25px;
    }
    .values-title {
        font-size: var(--font-size-lg);
    }

    .values-content p {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 640px) {
    .approach-hero {
        height: 200px;
    }

    .values-section {
        padding: var(--spacing-md);
        padding-bottom: 80px;
    }

    .values-section::before {
        display: none;
    }

    .values-sub {
        margin-bottom: var(--spacing-lg);
        margin-left: 0;
        padding-left: 0;
    }

    .values-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-sm);
    }

    .values-content p {
        font-size: var(--font-size-xs);
    }

    .apprach-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .apprach-section h1 {
        font-size: var(--font-size-2xl);
    }

    .apprach-section h5 {
        font-size: var(--font-size-sm);
    }
}

