#approach-section {
    background-color: white;
    padding-top: 0px;
    padding-bottom: 0px;
}

#approach-section h2 {
    color: #1f1f1f;
    margin: 60px auto 60px auto;
    max-width: 70%;
    text-align: center;
}

#approach-section h4 {
    color: #1f1f1f;
    margin: 80px auto 80px auto;
    max-width: 70%;
    text-align: center;
}

#approach-section p {
    color: #1f1f1f;
    text-align: justify;
}

#approach-section h3 {
    color: #1f1f1f;
}

#approach-section button {
    float: right;
    background-color: white;
    color: #1f1f1f;
    border-color: #1f1f1f;
}

#approach-section button:hover {
    background-color: #d00909;
    color: #fff;
}

#approach-section .image-container {
    position: relative;
    background-image: url("../assets/images/index/approach.jpeg");
}

#approach-section .image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 50%, transparent 90%, white 90%);
    z-index: 1;
    pointer-events: none;
}

#approach-section .image-container::after {
    content: "";
    position: absolute;
    top: 80%;
    left: 6.5%;
    width: 60px;
    height: 60px;
    background-image: url("../assets/images/rich-play-button.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

@media (max-width: 1500px) {

    #approach-section .image-container::after {
        background-image: none;
    }

    #approach-section .image-container::before {
        background: none;
    }
}

@media (max-width: 1024px) {
    #approach-section .image-text-pair-right .text-container {
        width: 40%;
        margin: 40px 40px;
    }

    #approach-section h3 {
        font-size: 1.8rem;
    }

    #approach-section p {
        font-size: 0.95rem;
    }

    #approach-section .image-container::after {
        background-image: none;
    }

    #approach-section .image-container::before {
        background: none;
    }
}

@media (max-width: 768px) {
    #approach-section {
        padding: 40px 0;
        padding-top: 0px;
    }

    #approach-section .image-text-pair-right {
        flex-direction: column;
        gap: 0;
    }

    #approach-section .image-text-pair-right .image-container {
        max-width: 100%;
        min-height: 250px;
        order: 1;
    }

    #approach-section .image-text-pair-right .text-container {
        width: 85%;
        margin: 30px auto;
        order: 2;
    }

    #approach-section h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 1.5rem;
        margin-top: 20px;
    }

    #approach-section p {
        font-size: 0.95rem;
        text-align: justify;
        line-height: 1.6;
        width: 80%;
        margin-left: 10%;
    }

    #approach-section button {
        float: none;
        display: block;
        margin: 25px auto 0 auto;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #approach-section {
        padding: 30px 0;
        padding-top: 0px;
    }

    #approach-section .image-text-pair-right .text-container {
        width: 90%;
        margin: 25px auto;
    }

    #approach-section .image-text-pair-right .image-container {
        min-height: 200px;
    }

    #approach-section h3 {
        font-size: 1.4rem;
    }

    #approach-section p {
        font-size: 0.9rem;
    }

    #approach-section button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    #approach-section .image-container::after {
        width: 50px;
        height: 50px;
    }
}


@media screen and (orientation: landscape) and (max-height: 900px) {
    #approach-section h3 {
        margin-bottom: 1.5rem;
        margin-top: 20px;
    }

    #approach-section p {
        width: 85%;
        margin-left: auto;
    }
}
