/* Top section background image */
.top-section {
    background-image: url('../images/flight-details-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.top-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.top-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Form styles */
.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container .field {
    margin-bottom: 15px;
}

.form-container .field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-container .field input,
.form-container .field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container .field input[type="text"] {
    background: #f9f9f9;
}

.form-container .field input[type="text"]:focus {
    border-color: #007bff;
}

.form-container .remove-city {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.form-container .remove-city:hover {
    background: #ff1a1a;
}

/* Price breakdown styles */
.price-breakdown {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.price-breakdown h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price-breakdown .total {
    font-size: 28px;
    color: #28a745;
    font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-section {
        padding: 30px 0;
    }

    .top-section h1 {
        font-size: 28px;
    }

    .top-section p {
        font-size: 16px;
    }

    .form-container {
        padding: 15px;
    }

    .price-breakdown {
        padding: 15px;
    }
}
