.services-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h2 {
    text-align: center;
    font-size: 2em;
    color: #2b9348;
}

.service-item {
    margin-bottom: 30px;
    padding: 30px; /* Increased padding around each service item */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-image {
    width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px; /* Additional margin below image */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service-image:hover {
    transform: scale(1.05);
}

.service-item h3 {
    color: #2b9348;
    margin-bottom: 15px; /* Added space below title */
}

.service-item p {
    color: #555;
    line-height: 1.8; /* Slightly increased line height for better readability */
    padding: 0 10px; /* Padding around text for additional spacing */
}

.service-button {
    display: inline-block;
    padding: 10px 25px; /* Increased button padding for a larger clickable area */
    margin-top: 15px;
    color: #fff;
    background-color: #2b9348;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.email-subscribe {
    display: flex;
    justify-content: center;
    align-items: center; /* Center align the input and button vertically */
    margin-top: 20px;
}

.email-input {
    padding: 12px; /* Increased padding for input field */
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.email-button {
    padding: 12px 25px; /* Increased padding for email button */
    background-color: #2b9348;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
