* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f8f6;
    color: #333;
    padding: 20px;
    padding-top: 80px; /* Adjust if your nav is taller or shorter */
  }
  
  /* Navigation bar */
  nav {
    background-color: #7c9a8b; /* earthy sage green */
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  /* Headings */
  h1, h2 {
    color: #4d5b47;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Service Section (like "What's Included in a Bath") */
  .services {
    background-color: #f2f1ed;
    padding: 1rem 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .services h2 {
    color: #4d5b47;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .services ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  
  .services li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
  }
  /* Haircut Section */
.haircut {
    background-color: #f2f1ed;  /* Light earthy background */
    padding: 2rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .haircut h2 {
    color: #4d5b47;  /* Deep green for the heading */
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  

  /* About Me Page */
.about-me {
    padding: 2rem;
    max-width: 800px;
    margin: 1.5rem auto 3rem auto; /* Less top margin */
    text-align: center;
}
  
  .about-me h2 {
    color: #4d5b47;  /* Deep green for the heading */
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Box styling for About Me section */
  .about-box {
    background-color: #f2f1ed;  /* Light earthy background */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
  }
  
  .about-box p:last-child {
    margin-bottom: 0;
  }
  
  .about-box p {
    margin-bottom: 1rem;
  }
  /* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f2f1ed; /* Light earthy background */
    color: #333;
    margin: 0;
    padding: 0;
}

em {
  font-size: 0.9em;
  color: #555;
}

/* Header Styles */
header {
    background-color: #f2f1ed; /* Soft brown for the header */
    color: #333;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #e3e4e1; /* Subtle earthy background */
}

.services h2 {
    font-size: 2rem;
    color: #4d5b47; /* Matching green for headings */
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    padding: 1.5rem;
    width: 30%;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.service-box h3 {
    color: #4d5b47;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.service-box p {
    font-size: 1rem;
    text-align: center; 
}

/* Contact Section */
.contact {
    background-color: #f2f1ed; /* Light earthy background */
    padding: 3rem;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #4d5b47;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact button {
    background-color: #4d5b47;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #3a4a36; /* Darker green for hover effect */
}

/* Footer Styles */
footer {
    background-color: #9f9e9d; /* Warm beige for footer */
    color: #333;
    padding: 1rem;
    text-align: center;
}

footer p {
    margin: 0;
}
footer {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds space between the badges */
    align-items: center;
  }
  
  footer img {
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Keep it square if it's a square image */
  }

/* Optional: Style the list items */
ul li {
    font-size: 1.1rem; /* Adjust text size */
    padding-left: 1rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space between items */
    text-align: center;
}
.services ul,
.haircut ul {
  list-style: none; /* Removes bullets */
  padding: 0;
  margin: 0 auto;
  text-align: center; /* This centers text inside the <li> */
}

.services li,
.haircut li {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.centered-list {
    list-style: none; /* Removes bullets */
    padding: 0;
    text-align: center;
  }
  
  .centered-list li {
    margin: 0.5em 0;
  }
/* Portfolio section styles */
.portfolio {
    margin-top: 1rem; /* Adjust this as needed */
    padding-top: 0;   /* Remove any unnecessary top padding */
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers the images horizontally */
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: 12px;
    background-color: #f5f5f5;
    width: fit-content;
    margin: 0 auto; /* This centers the whole portfolio container */
  }
  
  .portfolio-item img {
    width: 100%;
    max-width: 400px; /* Keeps images a manageable size */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 0 auto;
  }

/* Hover effect on images */
.portfolio-item img:hover {
    transform: scale(1.05); /* Zoom in slightly on hover */
}

/* Add some padding to the footer */
footer {
    font-size: 0.9rem;
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    .portfolio {
        flex-direction: column;
        align-items: center;
    }
    .portfolio-item {
        max-width: 100%; /* Full width on small screens */
    }
}
.ready-schedule-section {
    background-color: #f0f4ee; /* light earthy tone */
    border: 2px solid #b6c4a2; /* soft green border */
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ready-schedule-section h2 {
    color: #5c6b43;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.ready-schedule-section p {
    color: #333;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.ready-schedule-section a.contact-form-link {
    display: inline-block;
    background-color: #5c6b43;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.ready-schedule-section a.contact-form-link:hover {
    background-color: #4b5934;
}
/* Mobile responsiveness */
@media screen and (max-width: 600px) {
    .ready-schedule-section {
        padding: 15px;
        margin: 20px 10px;
        font-size: 1em;
    }

    .ready-schedule-section h2 {
        font-size: 1.5em;
    }

    .ready-schedule-section p {
        font-size: 1em;
    }

    .ready-schedule-section a.contact-form-link {
        padding: 10px;
        font-size: 1em;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
        text-align: center;
    }
    nav {
            background-color: #7c9a8b; /* earthy sage green */
            padding: 1rem;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 2rem;
    }
          
      

    .portfolio {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .service-box {
        margin: 15px auto;
        width: 90%;
    }
    .full-width {
        width: 90%;
        max-width: 900px;
        margin: 1.5rem auto;
        display: block;
        text-align: left;
    }
}
/* Pricing Transparency Section */
.pricing-transparency {
    background-color: #f2f1ed; /* Matching earthy background */
    padding: 2rem 1rem;  /* Adjusting padding for consistency */
    border-radius: 12px;  /* Same border-radius as services section */
    max-width: 800px;  /* Same max-width as the services section */
    margin: 2rem auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);  /* Same box shadow */
    text-align: center;  /* Ensuring center text alignment */
}

.pricing-transparency h2 {
    color: #4d5b47; /* Deep green for the heading */
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.pricing-transparency p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.pricing-box {
    max-width: 100%;  /* Full width to match section */
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;  /* Matching border-radius */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);  /* Matching box-shadow */
}

.pricing-box h3 {
    color: #4d5b47;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    max-width: 500px;  /* Limiting width for readability */
}

.pricing-box li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

  
  @media screen and (max-width: 600px) {
    .pricing-section {
      padding: 1.5rem;
      margin: 1rem;
    }
  
  
    .pricing-section p {
        text-align: center;
    }
    .pricing-table li {
      font-size: 1rem;
      list-style: none; /* Removes bullets */
    }
  }
  .pricing-transparency {
    width: 100%;
    background-color: #f4f4f4;
    padding: 2rem 1rem;
  }
  
  .pricing-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .pricing-box h3 {
    text-align: center;
    margin-top: 1.5rem;
  }
  .badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .badge-container img {
    width: 100px; /* Size for both badges */
    height: 100px; /* Keep square aspect ratio */
  }
