/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background for the whole page */
}

/* Container for Layout */
.main-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    padding: 20px;
        background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Left Side: Form */
.form-section {
    flex: 1;
    max-width: 500px;
    padding: 20px;
}

.form-section h2 {
    color: #C8102E; /* Brand color */
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cta-button {
    display: inline-block;
    background-color: #C8102E; /* Brand color */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #a00e2f; /* Darker shade of brand color */
}

/* Right Side: Images and Information */
.info-section {
    flex: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 145px;
}

.info-section h2 {
    color: #C8102E; /* Brand color */
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.circle-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C8102E; /* Border color */
    transition: transform 0.3s ease;
}

.circle-img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.info-section h3, .info-section h4 {
    color: #0056b3; /* Secondary color for subheadings */
    text-align: center;
    margin: 10px 0;
}

.info-section h4 {
    color: #333; /* Darker color for subheadings */
}

/* Additional Content Styles */
.container {
    margin: 20px;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #C8102E; /* Brand color */
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-section, .service-features, .booking-section {
    margin-bottom: 20px;
}

.intro-section h2, .service-features h2, .booking-section h2 {
    color: #C8102E; /* Brand color */
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

.intro-section p, .service-features p, .booking-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.feature {
    margin-bottom: 15px;
}

.feature h3 {
    color: #0056b3; /* Secondary color for feature titles */
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
}

.feature p {
    color: #333;
    margin: 5px 0;
}

.booking-section a.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
