.second-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin-top: 150px;
    gap: 20px;

    .column {
        width: 100%;
        max-width: 800px;

        &.left-column {
            display: flex;
            flex-direction: column;
            gap: 100px;
            z-index: 1;

            .text-container {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: start;
                gap: 30px;
                position: relative;

                .circle-text-container {
                    position: absolute;
                    z-index: -1;
                    width: 600px;
                    height: 600px;
                    opacity: 0.8;
                    left: -400px;
                    top: -100px;
                }

                p {
                    font-weight: 400;
                    font-size: 28px;
                    line-height: 45px;
                    color: #fff;
                    text-shadow: 0px 5.33px 5.33px #00000040;

                    &.heading {
                        font-size: 32px;
                        font-weight: 700;
                    }
                }

                ul {
                    font-weight: 400;
                    font-size: 28px;
                    line-height: 45px;
                    color: #fff;
                    text-shadow: 0px 5.33px 5.33px #00000040;
                    margin-left: 25px;
                }
            }
        }

        &.right-column {
            display: flex;
            flex-direction: column;
            gap: 100px;
            position: relative;

            .text-container {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 20px;
                z-index: 1;
                position: relative;

                &:nth-child(1), &:nth-child(2) {
                    &:after {
                        content: "";
                        display: block;
                        position: absolute;
                        bottom: -50px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 330px;
                        height: 1px;
                        background-color: #fff;
                    }
                }

                p {
                    &:nth-child(1) {
                        font-weight: 600;
                        font-size: 40px;
                        text-align: center;
                        color: #9BCCCA;
                    }
                    &:nth-child(2) {
                        color: #fff;
                        font-weight: 300;
                        font-size: 21px;
                        text-align: center;
                    }
                }
            }

            img {
                width: 930px;
                height: 930px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -52%);
            }
        }
    }
}

@media (max-width: 1366px) {
    .second-section {
        .column {
            &.left-column {
                .text-container {
                    p {
                        font-size: 21px;
                        line-height: 30px;

                        &.heading {
                            font-size: 24px;
                        }
                    }
                    ul {
                        font-size: 21px;
                        line-height: 30px;
                    }
                }
            }
            &.right-column {
                gap: 70px;

                .text-container {
                    &:nth-child(1), &:nth-child(2) {
                        &:after {
                            bottom: -30px;
                            width: 250px;
                        }
                    }
                    p {
                        &:nth-child(1) {
                            font-size: 30px;
                        }
                        &:nth-child(2) {
                            font-size: 16px;
                        }
                    }
                }
                img {
                    width: 700px;
                    height: 700px;
                    transform: translate(-50%, -53%);
                }
            }
        }
    }
}

@media (max-width: 1024px) {
    .second-section {
        gap: 150px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .second-section {
        gap: 90px;
        margin-top: 50px;

        .column {
            &.left-column {
                gap: 50px;

                .text-container {
                    .circle-text-container {
                        width: 300px;
                        height: 300px;
                        opacity: 0.8;
                        left: -200px;
                        top: 00px;
                    }
                    
                    p {
                        font-size: 13px;
                        line-height: 21px;

                        &.heading {
                            font-size: 21px;
                            line-height: 30px;
                        }
                    }
                    ul {
                        font-size: 13px;
                        line-height: 21px;
                    }
                }
            }
            &.right-column {
                gap: 60px;

                .text-container {
                    gap: 5px;

                    &:nth-child(1), &:nth-child(2) {
                        &:after {
                            bottom: -30px;
                            width: 150px;
                        }
                    }
                    p {
                        &:nth-child(1) {
                            font-size: 21px;
                        }
                        &:nth-child(2) {
                            font-size: 13px;
                        }
                    }
                }
                img {
                    width: 400px;
                    height: 400px;
                    transform: translate(-50%, -53%);
                }
            }
        }
    }
}