/* Reset some default browser styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Apply a soothing blue background color to the entire page */
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa; /* Light cyan background */
    color: #004d40; /* Dark teal text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Center the header text and add padding */
header {
    background-color: #006064; /* Teal background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center;
}

/* Style the links within the header */
header a {
    color: #80deea; /* Light cyan links */
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

/* Add padding to the main content area */
main {
    padding: 20px;
}

/* Style the section headings */
h2 {
    color: #00796b; /* Dark teal headings */
    margin-bottom: 10px;
}

/* Add a subtle background and padding to each section */
section {
    background-color: #b2ebf2; /* Pale cyan background */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 15px;
}

/* Style the list items */
ul {
    list-style-type: square;
    margin-left: 20px;
}

/* Center the footer text and add padding */
footer {
    background-color: #004d40; /* Dark teal background */
    color: #ffffff; /* White text */
    padding: 10px 0;
    text-align: center;
}

/* Style the service sections */
.service {
    margin-bottom: 20px;
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.service h3 {
    color: #004d40;
    margin-bottom: 5px;
}

.service p {
    color: #004d40;
}
