/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Modern font */
    background-color: #f5f5f5; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #20c133; /* Blue for a modern, professional look */
    color: white;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #2980b9; /* Darker blue border */
}

header .logo h1 {
    font-size: 2.8em;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f39c12; /* Modern yellow for hover effect */
}

.hero {
    background: linear-gradient(135deg, #c5d1ca, #e8ebe9); /* Gradient from green to teal */
    color: rgb(10, 0, 0);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero button {
    background-color: #f39c12; /* Yellow button */
    color: #fff;
    padding: 12px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #e67e22; /* Darker yellow on hover */
}

section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about p,
.services ul {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.services ul li {
    font-size: 1.4em;
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.services ul li::before {
    content: "✔"; /* Checkmark icon before each item */
    position: absolute;
    left: 0;
    color: #2ecc71; /* Green checkmark */
    font-size: 1.8em;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 600;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: #3498db; /* Blue border on focus */
    outline: none;
}

.contact form button {
    background-color: #3498db; /* Blue button */
    color: white;
    padding: 12px 25px;
    font-size: 1.1em;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact form button:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
}

/* Add some basic styling for the thank you message */
.thank-you {
    background-color: #b1c1b7; /* Green background */
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.thank-you h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.thank-you p {
    font-size: 1.2em;
}
