main.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 567px;
    gap: 20px;
    align-items: start;
    margin-bottom: 5rem;
}

.image-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    padding: 15px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    pointer-events: auto;
}

.thumbnail:hover {
    border-color: #0095da;
}

.booking-form {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

select, input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

select:focus, input:focus {
    outline: none;
    border-color: #0095da;
}

.date-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-option label {
    margin: 0;
    cursor: pointer;
}

.price {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #ffa500;
    margin: 30px 0 20px;
}

.book-button {
    width: 100%;
    padding: 15px;
    background: #0095da;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.book-button:hover {
    background: #0086c8;
}
img#mainImage {
    max-height: 540px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
}