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

h1, h2, h3 {
    margin: 10px 0;
}

a {
    text-decoration: none;
}

/* Header Section */
.header {
    background: #3366ff;
    color: white;
    padding: 50px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    font-size: 14px;
}

.hero-text h1 {
    font-size: 28px;
    margin: 20px 0;
}

.hero-text p {
    font-size: 16px;
    margin: 10px 0 20px;
}

.cta-button {
    background: white;
    color: #3366ff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 40px 20px;
    background: #f9f9f9;
}

.service-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
}

.service-image {
    background: #ddd;
    height: 120px;
    border-radius: 10px;
}

/* Why Choose Us Section */
.why-us {
    padding: 40px 20px;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    width: 200px;
}

/* Testimonials Section */
.testimonials {
    padding: 40px 20px;
    background: #f9f9f9;
    font-style: italic;
}

blockquote {
    font-size: 16px;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
}

.contact-form {
    max-width: 400px;
    margin: auto;
}

.contact-form input, .contact-form select, .contact-form textarea, .contact-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.contact-form button {
    background: #3366ff;
    color: white;
    font-weight: bold;
    border: none;
}

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