* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

header {
    background-color: #54c82a;
    padding: 20px 0;
    color: white;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
    min-width: 700px;
}

.logo img {
    margin-left: 10px;
    height: 90px;
}

nav ul {
    margin-top: -30px;
    list-style: none;
    float: right;
    margin-right: 100px;
}

nav ul li {
    display: inline;
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.hero {
    background: url('hero-image.jpg') no-repeat center center;
    background-size: cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 1px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 30px;
}

.services {
    background-color: #fff;
    padding: 50px 0;
}

.services h2{
    text-align: center;
}

.services .service-item {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.services .service-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    clip-path: circle(55%);
}

.about, .contact {
    background-color: #ecf0f1;
    padding: 50px 0;
}

.about h2, .contact h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #2c3e50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
}
