/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Section */
.hero {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background: #f39c12;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e67e22;
}

/* About Us Section */
.about-us {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.about-us h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.services h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.service-card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background: #eee;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.why-choose-us ul {
    list-style-type: none;
    padding: 0;
}

.why-choose-us li {
    font-size: 18px;
    margin: 10px 0;
}

/* How We Work Section */
.how-we-work {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.how-we-work h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.how-we-work ol {
    list-style-type: decimal;
    padding: 0;
}

.how-we-work li {
    font-size: 18px;
    margin: 10px 0;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    background: #f1f1f1;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Call to Action Section */
.cta {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.cta-button {
    background: #f39c12;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.cta-button:hover {
    background: #e67e22;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin-bottom: 10px;
}

footer ul {
    list-style-type: none;
    padding: 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;
}
