:root {
    --header-color: #a8c0a0;
    --body-color: #d1e0d5;
    --button-color: #b0c4b1;
    --form-border-color: #cccccc;
    --form-control-color: #88a097;
    --text-color: #000000;
    --text-disabled-color: #333333;
    --button-disabled-color: gray;
    --popup-color: #f8f9fa;
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--body-color); /* Soft cream background, can be removed if using a full background image */
  background-image: url('nature_background.jpg'); /* Path to your background image */
  background-size: cover; /* Cover the entire page */
  background-position: center; /* Center the background image */
  background-attachment: fixed; /* Keep the image fixed during scroll */
}

h1 {
  font-size: 32pt;
}

h2 {
  font-size: 24pt;
  text-align: center; /* Center the text */
}

h3 {
  font-size: 18pt;
}

.centered-input {
  display: flex;
  justify-content: center;
  width: 100%;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 0 5px;
}

.header {
  background: var(--header-color); /* Soft green for a relaxing vibe */
  color: var(--text-color); /* Fixed the typo from #black to black */
  padding: 10px; /* Add some padding for better spacing */
}

.header .nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Allows items to wrap to the next line */
  font-size: 16pt;
  margin: 0;
  padding: 0;
}

.header .nav li {
  margin: 0 10px; /* Adjust margin for spacing between items */
}

.header .nav a {
  color: var(--text-color) /* Ensure text is black by default */
  text-decoration: none;
}

.header .nav a:hover {
  color: var(--text-color); /* Change to the desired color when hovered over */
}

.header .nav li {
  margin: 0 15px;
}

.logo {
  display: block;
  margin: 0 auto 10px;
  max-height: 60px;
}

.hero {
  background: var(--body-color); /* Light green background for hero */
  padding: 50px 20px;
  text-align: center;
  max-width: 100%;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text-color)
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 20px;
}

ul.custom-bullets {
  list-style: none; /* Remove default bullets */
  margin-left: auto;
  margin-right: auto;
  width: 90%; /* Adjust width to reduce the overall indentation */
  padding-left: 2px; /* Adjust list padding to reduce indentation */
  font-size: 18pt;
}

ul.custom-bullets li {
  position: relative; /* Establish positioning context */
  padding-left: 20px; /* Space for the custom bullet */
}

ul.custom-bullets li:before {
  content: '•'; /* Unicode character for bullet */
  color: black; /* Bullet color */
  position: absolute;
  left: 0;
  font-size: 18pt; /* Adjust size as necessary */
}

.section {
  color: var(--text-color);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px !important;
  padding-bottom: 40px !important;
  margin: 40px 0; /* This creates space above and below each section */
  background-color: var(--body-color); /* Default background color, though you're already setting colors */
  position: relative;
  font-size: 18pt;
}

/* Optional: Class for additional space to expose more background */
.bg-space {
  height: 100px; /* Adjust based on how much background you want to show */
}

/* Adjustments for specific background colors if needed */
.bg-color-green {
  background-color: var(--body-color); /* Example green background */
}

.footer {
  background: var(--header-color); /* Darker shade for footer */
  text-align: center;
  padding: 20px 0;
  color: var(--text-color);
  font-size: 18pt;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--form-border-color);
  background-color: #fff; /* Keeping forms clean and bright */
}

.form-control:focus {
  outline: none;
  border-color: var(--form-control-color); /* Focus color for form elements */
}

.btn:hover {
  background: white;
  color: var(--text-color);
}

.btn:focus {
  background: white;
  color: var(--text-color);
}

.btn:active {
  background: white;
  color: var(--text-color);
}

.btn.disabled, .bt:disabled {
  background-color: var(--button-disabled-color); /* Gray, for inactive/disabled state */
  cursor: not-allowed;
  color: var(--text-disabled-color);
}

.btn-primary {
  background: var(--button-color);
  border: none;
  color: var(--text-color);
}

.btn-secondary {
  background: var(--button-color); /* Softer green for secondary button */
  border: none;
  color: var(--text-color);
  font-size: 18pt;
}

.popup {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background-color: var(--popup-color);
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
  display: none; /* Initially hidden */
}

.price-list {
  list-style-type: none; /* Remove default bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  font-size: 14pt; /* Adjust font size */
}
.price-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Three columns: flexible, auto, flexible */
  align-items: center; /* Align items vertically */
  padding: 5px 0; /* Add some padding */
}
.price-item-title {
  text-align: right; /* Align text to the right */
  padding-right: 10px; /* Add some space before the divider */
  font-size: 16pt;
}
.price-item-divider {
  text-align: center; /* Center the divider */
  font-size: 16pt;
}
.price-item-value {
  text-align: left; /* Align text to the left */
  padding-left: 10px; /* Add some space after the divider */
  font-weight: bold; /* Make the price bold */
  font-size: 16pt;
}
.price-item-description {
  grid-column: 1 / span 3; /* Span across all columns */
  text-align: center; /* Center the subtext */
  font-size: 12pt; /* Smaller font size for subtext */
  margin-top: 5px; /* Space above the subtext */
}

#name, #phone, #email, #message {
  font-size: 12pt;
}

/* Responsive design */
@media (max-width: 1200px) {
  .header .nav {
    font-size: 10pt; /* Adjust font size for smaller screens */
  }
  .section {
    font-size: 12pt;
  }
  .btn-secondary {
    font-size: 10pt;
  }
  ul.custom-bullets {
    font-size: 10pt;
  }
  ul.custom-bullets li {
    padding-left: 15px; /* Adjust padding to ensure bullets stay aligned */
  }
  ul.custom-bullets li:before {
    font-size: 10pt; /* Adjust bullet size */
    left: 0; /* Keep bullets aligned */
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 12pt;
  }
  .collapsible {
    font-size: 12pt;
  }
  .price-item-title {
    font-size: 12pt;
  }
  .price-item-divider {
    font-size: 12pt;
  }
  .price-item-value {
    font-size: 12pt;
  }
  .price-item-description {
    font-size: 10pt;
  }
}

@media (max-width: 600px) {
  .header .nav {
    font-size: 8pt; /* Further adjust font size for very small screens */
  }
  .section {
    font-size: 10pt;
  }
  .btn-secondary {
    font-size: 8pt;
  }
  ul.custom-bullets {
    font-size: 8pt;
  }
  ul.custom-bullets li {
    padding-left: 15px; /* Adjust padding to ensure bullets stay aligned */
  }
  ul.custom-bullets li:before {
    font-size: 8pt; /* Adjust bullet size */
    left: 0; /* Keep bullets aligned */
  }
  h1 {
    font-size: 18pt;
  }
  h2 {
    font-size: 12pt;
  }
  h3 {
    font-size: 10pt;
  }
  .collapsible {
    font-size: 8pt;
  }
  .price-item-title {
    font-size: 10pt;
  }
  .price-item-divider {
    font-size: 10pt;
  }
  .price-item-value {
    font-size: 10pt;
  }
  .price-item-description {
    font-size: 8pt;
  }
}