/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
}

/* Header Section */
header {
    background-color: #007bff;
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center; /* Aligns logo and text */
    justify-content: space-between;
    border-bottom: 3px solid #0056b3;
}

/* Logo Styling */
.logo {
    width: 150px; /* Adjustable size */
    height: auto;
    max-height: 100px; /* Prevents excessive size */
    object-fit: contain; /* Keeps proportions */
    margin-right: 20px;
}

/* Header Text */
.header-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 18px;
    color: white;
    background-color: #ff6b00;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #cc5500;
}

/* Sections */
.card {
    padding: 50px 20px;
    max-width: 800px;
    margin: 40px auto;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

.about-text {
    width: 50%;
    padding: 20px;
}

.about-image img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

/* Services Section */
#services {
    background-color: #f1f1f1;
}

#services ul {
    list-style: none;
    padding: 0;
}

#services li {
    font-size: 18px;
    margin: 10px 0;
}

/* Testimonials Section */
#testimonials {
    background-color: white;
    font-style: italic;
}

/* Contact Form */
#contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact label {
    font-weight: bold;
}

#contact input, #contact textarea {
    width: 80%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Final CTA Section */
#cta {
    background-color: #007bff;
    color: white;
    padding: 60px 20px;
}

#cta h2 {
    font-size: 24px;
}

#cta p {
    font-size: 18px;
    margin: 15px 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    font-size: 14px;
}
