/* Hero Section Styles */
#hero {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero .hero-content {
    max-width: 600px;
    margin: 0 auto;
}

#hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
}

/* Services Section Styles */
#services {
    padding: 60px 20px;
    text-align: center;
}

#services h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#services h4 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 10px;
}

#services ul {
    padding-left: 20px;
    margin: 0;
}

#services li {
    margin-bottom: 10px;
}

/* Call to Action Section Styles */
#call-to-action {
    background-color: #007BFF;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#call-to-action .button {
    background-color: #fff;
    color: #007BFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

#call-to-action .button:hover {
    background-color: #f4f4f4;
}

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

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

#footer a:hover {
    text-decoration: underline;
}