body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1em;
    text-align: center;
}

header {
    background-color: #2e8b57; /* turtle green */
    color: white;
    padding: 1em 0;
}

header h1 {
    margin: 0;
    padding-bottom: 0.5em;
    text-align: center;
}

header nav {
    text-align: center;
}

header nav a {
    margin: 0 1em;
    text-decoration: none;
    color: #b2fab4; /* light sea green */
    font-weight: bold;
}

main {
    padding: 2em 0;
}

footer {
    background-color: #2e8b57;
    color: white;
    text-align: center;
    padding: 1em 0;
}

.hero {
    text-align: center;
    padding: 2em 0;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.75em 1.5em;
    background-color: #3cb371; /* medium sea green */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 3em;
}


.feature {
    width: 30%;
    background: white;
    margin-bottom: 1.5em;
    padding: 1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .feature {
        width: 100%;
    }
}


.about {
    background: white;
    margin-top: 3em;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form {
    background: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 2em auto;
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 1em;
    margin-bottom: 0.25em;
    font-weight: bold;
}

form input,
form textarea {
    padding: 0.75em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    resize: vertical;
}

form textarea {
    min-height: 120px;
}

form button {
    margin-top: 1.5em;
    padding: 0.75em;
    font-size: 1em;
    background-color: #2e8b57; /* turtle green */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

form button:hover {
    background-color: #276f48;
}

.services {
    margin-top: 3em;
    padding: 2em 1em;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.services h2 {
    text-align: center;
    color: #2e8b57;
    margin-bottom: 2em;
}

.service {
    margin-bottom: 2em;
}

.service h3 {
    color: #3cb371;
    margin-bottom: 0.5em;
}

.service p {
    color: #555;
    line-height: 1.6;
}

/* Call to action at the bottom */
.cta {
    text-align: center;
    background-color: #2e8b57;
    color: white;
    padding: 3em 1em;
    border-radius: 8px;
    margin-top: 4em;
}

.cta h2 {
    margin-bottom: 0.5em;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.cta .cta-button {
    background-color: #3cb371;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out;
}

.cta .cta-button:hover {
    background-color: #276f48;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
}

.service-box {
    flex: 1 1 40%;
    background: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 450px;
}

.service-box h3 {
    margin-bottom: 0.5em;
    color: #3cb371;
}

.service-box ul {
    text-align: left;
    padding-left: 1.2em;
    line-height: 1.6;
}

.service-box li {
    margin-bottom: 0.5em;
}
