body {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    .gallery-title {
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: clamp(30px, 4vw, 48px);
        color: #e85d8f;
        margin: 20px 0;
    }

    .gallery-container {
        display: flex;
        overflow: hidden;
        position: relative;
        gap: 16px;
        margin: 0;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
    }

    .gallery-items {
        display: flex;
        transition: transform 0.5s ease;
        justify-content: space-between;
        align-items: center;
    }

    .gallery-item {
        width: 100%;
        max-width: 600px;
        height: 400px;  
        margin-bottom: 16px;
        position: relative;
        display: flex;
        justify-content: center;
        overflow: hidden;  
    }

    .gallery-item img {
        width: 100%;
        height: 100%;  
        object-fit: cover;  
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #fff6f9; 
        color: #e85d8f; 
        padding: 12px;
        border-radius: 50%; 
        cursor: pointer;
        z-index: 10;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s, transform 0.3s;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .arrow:hover {
        background-color: #e85d8f;
        color: #fff;
        transform: scale(1.1);
    }

    @media (min-width: 769px) {
        .arrow {
            display: none; 
        }
    }

    @media (max-width: 768px) {
        .gallery-item {
            width: 100%;
            max-width: 100%;
            flex-shrink: 0;
        }

        .gallery-container {
            overflow-x: auto;
            display: flex;
        }

        .gallery-items {
            display: flex;
            width: 100%;
        }

        .arrow {
            font-size: 30px;
            padding: 15px;
        }
    }