body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f3eee7;
    color: #2b2622;
}
#wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff7f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #8a4b2a;
    color: #ffffff;
}
.headerCenter {
    flex: 1;
    text-align: center;
}
nav > a {
    margin: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}
nav > a:hover {
    color: #ffd2a6;
    text-decoration: underline;
}
main {
    padding: 15px;
}
.mainContent {
    background-image: url("heroimage.jpg");
    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(40, 30, 25, 0.75);
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    max-width: 320px;
}
.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: #c96a2b;
}
.button2 {
    background-color: #8a4b2a;
}
.bottomSection {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 15px;
    flex-wrap: wrap;
}
.profileCard {
    display: block;
    background-color: #fffaf6;
    padding: 16px;
    border-radius: 2px;
    text-decoration: none;
    color: #2b2622;
    width: 240px;
    text-align: left;
    border: 1px solid #e2d3c6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.profileCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}
.profileCard h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: #8a4b2a;
}
.profileCard p {
    margin: 4px 0;
    font-size: 14px;
    color: #4a3f38;
}
.searchPrompt {
    text-align: center;
    margin: 25px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #fff1e3;
    border-radius: 10px;
    border-left: 6px solid #c96a2b;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.searchPrompt h3 {
    margin-top: 0;
    color: #8a4b2a;
}
.searchPrompt p {
    margin-bottom: 15px;
    color: #4a3f38;
}
.left {
    flex: 1;
    background-color: #c96a2b;
    color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left ul {
    margin: 10px;
    padding-left: 18px;
}

.left li {
    padding: 6px 0;
}
.right {
    flex: 1;
}
footer {
    margin-top: auto;
    padding: 15px;
    background-color: #8a4b2a;
    color: white;
    text-align: center;
}
form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff7f0;
    padding: 20px;
    border-radius: 10px;
    border-left: 6px solid #c96a2b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
input, textarea, select {
    width: 100%;
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid gray;
    border-radius: 5px;
    font-size: 14px;
}
input[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background-color: #c96a2b;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}
input[type="submit"]:hover {
    background-color: #b85d22;
}
.profileHeaderCard {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff7f0;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 20px auto;
}
.profileHeaderCard img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
}
.profileHeaderText h2 {
    margin: 0;
    color: #8a4b2a;
}
.profileHeaderText p {
    margin: 5px 0 10px 0;
}
.profileWideCard {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff1e3;
    border-left: 6px solid #c96a2b;
    border-radius: 6px;
}
.profileInfoGrid {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 20px auto;
    flex-wrap: wrap;
}
.profileSmallCard {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    background-color: #fff7f0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.profileSmallCard h3 {
    margin-top: 0;
    color: #8a4b2a;
}
.serviceTable {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.serviceTable th,
.serviceTable td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
}

.serviceTable th {
    background-color: #8a4b2a;
    color: white;
}

.serviceTable tr:nth-child(even) {
    background-color: #f8ede3;
}
@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;
    }
}