/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and general styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Top bar with contact info */
.top-bar {
    background-color: #6f42c1;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: white;
}

.logo img {
    width: 150px; /* Adjust the logo size */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff9800;
}

/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #ede7f6;
}

.quote-form-section {
    width: 50%;
}

h1 {
    font-size: 36px;
    color: #6f42c1;
    margin-bottom: 20px;
}

.quote-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-container h2 {
    font-size: 24px;
    color: #ff9800;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

form input[type="submit"] {
    background-color: #ff9800;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

form input[type="submit"]:hover {
    background-color: #e68a00;
}

/* Quote Comparison Page */
.quote-comparison-container {
    padding: 50px;
    background-color: #f5f5f5;
}

.quote-comparison-container h1 {
    font-size: 32px;
    color: #6f42c1;
    margin-bottom: 20px;
}

.quote-comparison-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.quote-table th, .quote-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.quote-table th {
    background-color: #6f42c1;
    color: white;
    font-size: 18px;
}

.quote-table td {
    font-size: 16px;
}

.btn-book {
    background-color: #ff9800;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-book:hover {
    background-color: #e68a00;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer .footer-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

footer .footer-content ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

footer .footer-content ul li a:hover {
    text-decoration: underline;
}
