/* Global Styles */
body {
    font-family: 'Century Gothic','Open Sans', Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
}

button {
    background-color: #1e88e5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #005cbf;
}

/* Hero Section */
.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.hero button {
    font-size: 18px;
}

/* Services Overview */
.services {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
    text-align: center;
}

.service {
    flex: 1;
    margin: 0 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
}

/* How It Works Section */
.how-it-works {
    background-color: #eef;
    padding: 50px 20px;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.step {
    flex: 1;
    margin: 0 20px;
}

.step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
}

.how-it-works .cta {
    text-align: center;
    margin-top: 30px;
}

.how-it-works .cta button {
    font-size: 18px;
}

/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about-us h2 {
    margin-bottom: 20px;
}

.about-us p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 50px 0;
}

.contact-form h2 {
    margin-bottom: 20px;
}

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

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

.contact-form button {
    margin-top: 20px;
    width: 100%;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #1e88e5;
    margin: 0 10px;
}

footer a:hover {
    color: #005cbf;
}
