* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f6f4; /* Light beige/cream background */
}

header {
    background-color: #a8c8e3; /* Soft blue from the logo */
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
}

.container {
    width: 80%;
    margin: auto;
}

.logo {
    width: 160px;
    height: auto;
    position: absolute;
    top: 10px;
    left: 20px;
}

h1 {
    margin-top: 0;
    padding-top: 50px; /* Adjust for logo */
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Photo Gallery Section */
.photo-gallery {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    justify-content: flex-start;
    scroll-behavior: smooth;
    padding: 20px 0;
    background-color: #f7f6f4; /* Matches the body background */
}

.scroll-container {
    display: flex;
    flex-wrap: nowrap;
}

.gallery-item {
    flex: 0 0 auto;
    margin-right: 20px; /* Space between images */
}

.gallery-item img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.photo-gallery::-webkit-scrollbar {
    height: 8px;
}

.photo-gallery::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Section Styles */
.section {
    padding: 40px 0;
    text-align: center;
}

/* Team Members */
.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Services Section */
.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-block {
    background-color: white;
    padding: 15px;
    margin: 10px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hours Section */
.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.hours-day {
    text-align: right;
    font-weight: bold;
}

.hours-time {
    text-align: left;
}

/* Testimonials Section */
#testimonials {
    background-color: pink;
}

.testimonial-scroll {
    display: flex;
    overflow-x: scroll;
    padding: 20px 0;
}

.testimonial-item {
    flex: 0 0 auto;
    margin: 0 20px;
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-scroll::-webkit-scrollbar {
    height: 8px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #a8c8e3;
    color: white;
    text-align: center;
    padding: 10px 0;
}
