.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 150px;
}

h1 {
    text-align: center;
    color: #1a3c6d;
    margin-bottom: 30px;
    font-size: 36px;
    line-height: 1.4;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-form, .yacht-info {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-form h2, .yacht-info h2 {
    color: #1a3c6d;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.4;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #333;
    font-size: 20px;
    line-height: 1.6;
}

input, select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.6;
}

input:focus, select:focus {
    outline: none;
    border-color: #1a3c6d;
    box-shadow: 0 0 5px rgba(26, 60, 109, 0.3);
}

button {
    background-color: #1a3c6d;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    line-height: 1.6;
}

button:hover {
    background-color: #15325a;
}

.yacht-info p {
    color: #555;
    line-height: 2;
    margin-bottom: 15px;
    font-size: 18px;
}

.yacht-info ul {
    list-style: none;
    padding: 0;
}

.yacht-info li {
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    line-height: 2;
}

.yacht-info li::before {
    content: "✓";
    color: #1a3c6d;
    position: absolute;
    left: 0;
}

.yacht-list {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.yacht-list h2 {
    color: #1A3C6D;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.yacht-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yacht-item {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    min-height: 250px;
}

.yacht-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.yacht-image {
    flex: 0 0 40%;
    position: relative;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FFD740;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    display: block;
    opacity: 1;
    z-index: 10;
}

.yacht-details {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yacht-details h3 {
    color: #1A3C6D;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rating .stars {
    color: #FFD740;
    font-size: 16px;
}

.rating .score {
    color: #555;
    font-size: 14px;
}

.yacht-details p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.amenity-chip {
    background-color: #F0F4F8;
    color: #1A3C6D;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 14px;
    border: 1px solid #DDE4EE;
}

.price {
    color: #1A3C6D;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.book-now {
    background-color: #00C4B4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    align-self: flex-end;
    transition: background-color 0.3s, transform 0.3s;
}

.book-now:hover {
    background-color: #00A69A;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .booking-form h2, .yacht-info h2, .yacht-list h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    label, input, select, button, .yacht-info p, .yacht-info li {
        font-size: 16px;
        line-height: 1.6;
    }

    .yacht-item {
        flex-direction: column;
        min-height: auto;
    }

    .yacht-image {
        flex: none;
        height: 200px;
    }

    .yacht-details {
        padding: 15px;
    }

    .yacht-details h3 {
        font-size: 20px;
    }

    .price {
        font-size: 20px;
    }

    .book-now {
        font-size: 14px;
        padding: 10px 20px;
    }
}