.basic-section-with-gallery {
    padding: 100px 0px;
    background-color: #fff;
    position: relative;
}

.basic-section-gallery__content {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: block;
}

.basic-section-gallery__title {
    color: #05ACDD;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 30px !important;
}

.basic-section-gallery__text {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 60px;
    color: #666666;
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.basic-section-gallery__text p {
    margin-bottom: 20px;
}

.basic-section-gallery__text p:last-child {
    margin-bottom: 0;
}

.basic-section-gallery__gallery {
    margin: 60px 0;
}

.basic-section-gallery__gallery-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.basic-section-gallery__gallery-item {
    flex: 1;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 50px;
    transition: transform 0.4s ease;
    background: #F5F5F5;
    position: relative;
    display: grid;
}

.basic-section-gallery__gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.basic-section-gallery__gallery-item:hover .basic-section-gallery__gallery-image {
    transform: scale(1.08);
}

.basic-section-gallery__gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.basic-section-gallery__gallery-link:hover {
    text-decoration: none;
}

.basic-section-gallery__gallery-link:focus {
    outline: 2px solid #222B6B;
    outline-offset: 2px;
    border-radius: 50px;
}

.basic-section-gallery__button-wrapper {
    margin-top: 60px;
}

.basic-section-gallery__button {
    display: inline-block;
    padding: 20px 60px;
    background-color: #36C166;
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    border-radius: 0px 0px 50px 50px;
    transition: all 300ms ease;
    white-space: nowrap;
    
}

.basic-section-gallery__button:hover {
    background-color: #05ACDC;
    color: #fff;
    border-radius: 50px;
}

.basic-section-gallery__button:focus {
    outline: 2px solid #222B6B;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .basic-section-gallery__button {
        padding: 18px 40px;
        font-size: 22px;
    }
    .basic-section-gallery__title{
        max-width: 1000px;
    }
    .basic-section-gallery__text {
        max-width: 800px;
    }
}

@media (max-width: 1194px) {
    .basic-section-gallery__gallery-item {
        max-height: 175px;
        height: 100%;
    }
    
    .basic-section-gallery__title {
        max-width: 600px;
    }
    .basic-section-gallery__text {
        max-width: 720px;
    }
}

@media (max-width: 1024px) {
    
    .basic-section-gallery__gallery {
        margin: 50px 0;
    }
    
    .basic-section-gallery__gallery-row {
        gap: 25px;
    }
    
    .basic-section-gallery__button {
        padding: 15px 40px;
        font-size: 20px;
        border-radius: 0px 0 35px 35px;
    }
    
    .basic-section-gallery__button:hover {
        border-radius: 35px;
    }
}

@media (max-width: 768px) {
    .basic-section-gallery__gallery-row {
        flex-direction: column;
    }
    .basic-section-with-gallery {
        padding: 60px 0px;
    }
    
    .basic-section-gallery__gallery {
        margin: 40px 0;
    }
    
    .basic-section-gallery__gallery-row {
        gap: 20px;
    }
    
    .basic-section-gallery__button {
        font-size: 1.1rem;
        border-radius: 0px 0 25px 25px;
    }
    
    .basic-section-gallery__button:hover {
        border-radius: 25px;
    }
    
    .basic-section-gallery__button-wrapper {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {    
    
    .basic-section-gallery__gallery-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .basic-section-gallery__gallery-item {
        max-width: 100%;
        width: 100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .basic-section-gallery__button,
    .basic-section-gallery__gallery-item,
    .basic-section-gallery__gallery-image,
    .basic-section-gallery__gallery-link {
        transition: none;
    }
    
    .basic-section-gallery__gallery-item:hover {
        transform: none;
    }
    
    .basic-section-gallery__gallery-item:hover .basic-section-gallery__gallery-image {
        transform: none;
    }
    
    .basic-section-gallery__button:hover {
        transform: none;
    }
}

/* Enhanced focus states for better accessibility */
.basic-section-gallery__gallery-item:focus-within {
    outline: 2px solid #222B6B;
    outline-offset: 2px;
}

/* Remove bottom margin when gallery is the last child (no button present) */
.basic-section-gallery__gallery:last-child {
    margin-bottom: 0 !important;
}