* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #24252A;
}

h1, h2, h3 {
    /*font-family: sans-serif;*/
    font-family: 'OCR A Std', sans-serif;
    color: #edf0f1;
}

h2 {
    padding: none;
}

li, a, button, u {
    font-family: 'OCR A Std', sans-serif;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

a:hover {
    color: #4fcea1;
    transition: all 0.3s ease 0s;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 5%;
}

body {
    margin-bottom: 20px;
}

p {
    font-family: 'OCR A Std', sans-serif;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
    padding: 10px 0px;
}

img {
    width: 100%;
    border-radius: 10px;
}
.logo-link {
    margin-right: auto;
}
.logo {
    cursor: pointer;

    height: 60px;
    width: auto;
} 

.nav__links {
    list-style: none;
}

.nav__links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav__links li a {
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #4fcea1;
}

button {
    padding: 9px 25px;
    background-color: rgba(36, 139, 91, 1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.cta button {
    margin-left: 20px;  
}

button:hover {
    background-color: rgba(36, 139, 91, 0.8);
}

.page-content {
    padding: 0px 12%;
}

.page-content h2 {
    padding-top: 20px
}

.page-image-full {
    max-height: 100px;
    width: 100%;
    border-radius: 10%;
}

.service_list {
    padding: 10px 5px;
    list-style: none;
}

.service_list li {
    padding: 10px 0px;
}

.text-over-image {
    position: relative;
    text-align: center;
}

.text-over-image img {
    width: auto;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inline-button {
    margin: auto;
    width: 50%;
    padding: 20px;
    text-align: center;
    padding-bottom: 30px;
}

.contact-header {
    text-align: center;
    padding-bottom: 30px;
}

/* Style for form container */
form {
    max-width: 400px;
    margin: 0 auto;
  }
/* Style for input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Ensure padding and border are included in element's total width */
    color: rgb(237, 240, 241, 1); /* Set text color */
}

::placeholder {
    color: rgb(237, 240, 241, 0.6);
}

/* Style for form container */
form {
    max-width: 400px;
    margin: 0 auto;
}

/* Style for submit button */
button[type="submit"] {
    background-color: rgba(36, 139, 91, 1); /* Green background color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Hover effect for submit button */
button[type="submit"]:hover {
    background-color: rgba(36, 139, 91, 0.8);
}