/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark gray text */
}

/* Header styles */
header {
    background: #007a33; /* Dark green header background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
}

/* Main section styles */
.section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff; /* White background for sections */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Navigation and footer links */
a:link,
a:visited,
a:hover,
a:active {
    color: #ffffff;
    text-decoration: none;
}

/* Photo and content */
.content-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.photomain {
    width: 400px;
    height: 300px;
    object-fit: contain;
    flex-shrink: 0;
}

.photo {
    width: 426px;
    height: 350px;
    object-fit: contain;
    flex-shrink: 0;
}

.content-text {
    flex: 1;
}

.service-list {
    margin-left: 2em;
}

/* Form styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
}

/* h2 styles */
h2 {
    color: #007a33;   /* Teal */
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 10px; /* Space between inputs */
}

input[type="submit"] {
    /* background: #ffc107;  Yellow button background */
    background: #007a33;
    /* color: #333;  Dark text for contrast */
    color: #ffffff; /* White text */
    border: none;
    padding: 10px 15px;
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background 0.3s; /* Transition for hover effect */
}

input[type="submit"]:hover {
    background: #e0a800; /* Darker yellow on hover */
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
    background: #333; /* Black footer background */
    color: #ffffff; /* White text */
    position: relative;
    bottom: 0;
    width: 100%;
}