/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background-color: skyblue;
    padding: 20px;
    text-align: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-image {
    height: 50px; /* Adjust size as needed */
    width: auto;
}

.logo-text {
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.hero, .hero-small {
    background-color: #ff1dce;
    padding: 20px;
    border: 5px solid #ff1dce;
    text-align: center;
}

.hero-content {
    color: white;
    background-color: #ff1dce;
    border: 2px solid #ff1dce;
    padding: 20px;
    border-radius: 10px;
}

.hero-content h1, .hero-content p {
    text-align: center;
}

.center-text {
    text-align: center;
}

.about-us, .services, .caregivers-highlight, .testimonials, .contact-form, .booking-form, .apply {
    max-width: 800px;
    margin: auto;
    padding: 2rem 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.services .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
}

.services .services-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.services .services-list {
    list-style-type: none;
    padding: 0;
    margin: 0 10px;
    columns: 3; /* Divide the list into three columns */
    column-gap: 20px;
}

.services .services-list li {
    margin: 10px 0;
}

.services .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services .service-card {
    background: #fff;
    margin: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px;
    text-align: center;
}

.services .service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonials .testimonial {
    margin: 1rem 0;
}

.contact-form form, .booking-form form, .apply form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group, .booking-form .form-group, .apply .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label, .booking-form label, .apply label {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .booking-form input[type="text"], .booking-form input[type="email"], .booking-form input[type="tel"], .booking-form input[type="date"], .booking-form input[type="time"], .apply input[type="text"], .apply input[type="email"], .apply input[type="tel"], .contact-form textarea, .booking-form select, .apply input[type="file"], .apply textarea, .apply select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea, .apply textarea {
    height: 150px;
}

.contact-form button, .booking-form button, .apply button {
    background-color: #ff1dce;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover, .booking-form button:hover, .apply button:hover {
    background-color: #e11aab;
}

footer {
    background-color: skyblue;
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

.left-text {
    text-align: left;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
