
.approach-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    margin: auto;
    background-color: #121212;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 40px;
}

/* Left Section */
.approach-left {
    width: 50%;
}

.approach-left h2 {
    color: #ff4500;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.approach-left h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.approach-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Right Section */
.approach-right {
    width: 45%;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
}

.approach-right h3 {
    color: #ff4500;
    font-size: 18px;
    margin-bottom: 10px;
}

.approach-right p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-section {
        flex-direction: column;
        gap: 20px;
    }

    .approach-left, .approach-right {
        width: 100%;
    }

    .approach-left h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    

    .approach-left h1 {
        font-size: 24px;
    }

    .approach-left p, 
    .approach-right p {
        font-size: 14px;
    }

    .approach-right h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .approach-left h1 {
        font-size: 22px;
        text-align: center;
    }

    .approach-left p {
        text-align: justify;
    }

    .approach-right {
        padding: 15px;
    }

    .approach-right h3 {
        font-size: 14px;
    }

    .approach-right p {
        font-size: 13px;
    }
}

