        .about-section {
            padding: 3rem 0;


            .about-container {
                display: flex;
                align-items: center;
                gap: 60px;

                margin: 0 auto;
                padding: 0 20px;

                @media (max-width: 768px) {
                    flex-direction: column;
                    gap: 40px;
                    text-align: center;
                }
            }

            .about-image {
                flex: 1;
                position: relative;

                img {
                    width: 100%;
                    height: auto;

                    max-width: 540px;
                }
            }

            .about-content {
                flex: 1;


                h2 {
                    position: relative;
                    font-family: 'Inter', sans-serif;
                    font-weight: 600;
                    font-size: 48px;
                    line-height: 1.21;
                    color: #333333;
                    margin: 0 0 20px 0;
                    height: auto;
                    margin-bottom: 40px;

                    @media (max-width: 768px) {
                        font-size: 48px;
                    }

                    &::after {
                        position: absolute;
                        bottom: -45px;
                        left: 0px;
                        content: "";
                        width: 113px;
                        height: 5px;
                        background-color: #EECE18;
                        border-radius: 5px;
                        margin-bottom: 40px;

                        @media (max-width: 768px) {
                            margin: 0 auto 30px auto;
                        }
                    }
                }

                p {
                    font-family: 'Inter', sans-serif;
                    font-weight: normal;
                    font-size: 14px;
                    line-height: 1.21;
                    color: #333333;
                    margin-bottom: 30px;
                }
            }

            .about-underline {}

            .learn-more-btn {
                display: inline-block;
                background-color: #EECE18;
                color: #000000;
                font-family: 'Inter', sans-serif;
                font-weight: 700;
                font-size: 15px;
                text-decoration: none;
                padding: 18px 30px;
                border-radius: 5px;
                transition: all 0.3s ease;

                &:hover {
                    background-color: #d4b815;
                    transform: translateY(-2px);
                }
            }

            .quote-section {
                text-align: center;
                margin-top: 80px;
                padding: 0 20px;

                .quote-text {
                    font-family: 'Grape Nuts', cursive;
                    font-weight: 400;
                    font-size: 32px;
                    line-height: 1.225;
                    color: #333333;
                    max-width: 975px;
                    margin: 0 auto;

                    @media (max-width: 768px) {
                        font-size: 24px;
                    }
                }
            }
        }
