body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #5dd3b0;
}
#wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #b9f3ec;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #b4c799;
}
.headerCenter {
    flex: 1;
    text-align: center;
}
nav > a {
    margin: 15px;
    text-decoration: none;
    color: #008CBA;
    font-weight: bold;
}
nav > a:hover {
    color: #f06e3d;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 15px;
}
.mainContent {
    background-image: url("mycolors.png");
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    padding: 20px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.textBox {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    border-radius: 8px;
    max-width: 300px;
    width: 100%;
}
.button {
    display: inline-block;
    border: none;
    color: white;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    border-radius: 4px;
}
.button1 {
    background-color: #04AA6D;
}
.button2 {
    background-color: #008CBA;
}
.bottomSection {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    padding: 15px;
    flex-wrap: wrap;
}
.left {
    flex: 1;
    background-color: #f06e3d;
    color: white;
    padding: 25px;
    border-radius: 10px;
}
.left li {
    padding: 10px;
}
.right {
    flex: 1;
}
footer {
    margin-top: auto;
    padding: 15px;
    background-color: #b4c799;
    text-align: center;
}
form {
    max-width: 600px;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 6px solid #f06e3d;
}
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid gray;
    border-radius: 5px;
}
input[type="submit"] {
    background-color: #f06e3d;
    color: white;
    cursor: pointer;
    border: none;
}
input[type="submit"]:hover {
    background-color: #fc923b;
}
.profileCard {
    display: block;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: black;
    width: 200px;
    text-align: center;
    border-left: 5px solid #04aa6d;
}
.profileCard:hover {
    transform: scale(1.03);
}
.bottomSection {
    align-items: center;
}
.profileHero {
    text-align: center;
    margin: 20px auto;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    max-width: 800px;
    border-left: 6px solid #008cba;
}
.profileHero img {
    border-radius: 10px;
}
.profileHero h2 {
    color: #f06e3d;
}
.profileBoxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 900px;
}
.profileBox {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border-radius: 10px;
    background-color: white;
}
.bioBox {
    border-left: 6px solid #f06e3d;
}
.serviceBox {
    border-left: 6px solid #04aa6d;
}
.contactBox {
    border-left: 6px solid #008cba;
}
@media only screen and (max-width: 900px) {
    #wrapper {
        width: 100%;
        border: none;
    }
}
@media only screen and (max-width: 510px) {
    nav {
        flex-direction: column;
    }

    .bottomSection {
        flex-direction: column;
    }
}