* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-row {
    display: flex;
    gap: 8px;
}

.small-image {
    flex: 1;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.small-image:hover img {
    transform: scale(1.05);
}

.panoramic-section {
    width: 100%;
    margin: 10px 0;
}

.large-image {
    width: 100%;
    aspect-ratio: 10/3;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .image-row {
        flex-wrap: wrap;
    }
    
    .small-image {
        flex: 1 1 calc(50% - 0px);
        min-width: calc(50% - 0px);
    }
    
    .large-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 480px) {
    .small-image {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .large-image {
        aspect-ratio: 4/3;
    }
}

/* Image borders/separators */
.small-image:not(:last-child) {
    border-right: 2px solid white;
}

.image-row:first-child {
    border-bottom: 2px solid white;
}

.panoramic-section {
    border-bottom: 2px solid white;
}