    
    /* About Card */

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 60px;
    }

    .about-item {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .image-box {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .image-box:hover {
        transform: scale(1.02);
    }

    .image-box img {
        width: 100%;
        height: 100%;
        padding: 26px;
    }

    .text-box {
        background: #ffffff;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        margin: 0 auto;
        width: 95%;
        position: relative;
        margin-top: -50px;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: red;
        text-align: center;
    }

    .about-description {
        font-size: 1.1rem;
        color: black;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        font-weight: 500;
    }

    @media (max-width: 1000px){
        .about-container {
            margin-top: 40px;
        }
    }
    @media (max-width: 768px) {
        .image-box {
            height: 300px;
        }

        .text-box {
            width: 100%;
            margin-top: -30px;
            padding: 1.5rem;
        }

        .about-title {
            font-size: 1.8rem;
        }
    }
    @media (max-width: 480px) {
        .about-container {
            padding: 1rem;
        }

        .image-box {
            height: 200px;
            border-radius: 10px;
        }

        .text-box {
            padding: 1rem;
            margin-top: -20px;
            border-radius: 10px;
        }
    }