.booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.booking-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-content h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 16px;
    text-align: center;
}

.booking-content p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.booking-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #4a5568;
}

.info-item i {
    margin-right: 12px;
    color: #2563eb;
    font-size: 20px;
}

@media (max-width: 768px) {
    .booking-container {
        margin: 20px;
    }
    
    .booking-content {
        padding: 20px;
    }
    
    .booking-content h1 {
        font-size: 2rem;
    }
} 