body {
    font-family: 'Montserrat Bold', sans-serif; /* Replace with your font, e.g., 'Roboto' from Google Fonts */
    color: #0d4505; /* Main text color */
    background-color: #fefefe; /* Background color */
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #fefefe; /* Your primary color, e.g., blue */
    padding: 20px;
}

.logo {
    max-width: 350px; /* Adjust size */
}

h1, h2 {
    color: #fefefe; /* Matching header color */
}

.services, .gallery, .contact {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.image {
    max-width: 300px; /* Adjust image size */
    margin: 10px;
}

footer {
    background-color: #8fde08;
    color: white;
    padding: 10px;
}