/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
#hero-229 {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: 
      linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%),
      url('/images/iStock-1145327821.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile background image */
@media only screen and (max-width: 600px) {
  #hero-229 {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }
}

#hero-229 .cs-container {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  max-width: 800px;
  width: 100%;
  margin-top: 15rem; /* Adjusted values */
}

#hero-229 .cs-title {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-top: 40px; /* Increased margin */
}

#hero-229 .cs-text {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  max-width: 650px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 1rem;
}

/* Rest of your hero styles remain unchanged */

#hero-229 .cs-button-transparent {
  font-size: 1.125rem;
  line-height: 1;
  padding: 1rem 2rem;
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero-229 .cs-button-transparent:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F28D79;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

#hero-229 .cs-button-transparent:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

#hero-229 .cs-button-transparent:hover {
  border-color: #F28D79;
}

#hero-229 .cs-img {
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

#hero-229 .cs-button-transparent:hover .cs-img {
  transform: translateX(3px);
}

/* Background image styling */
#hero-229 .cs-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#hero-229 .cs-picture:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

#hero-229 .cs-picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-229 .cs-container {
      margin-top: 10rem; /* Adjusted for tablet */
  }
  
  #hero-229 .cs-watermark {
    margin: 0 auto 0.75rem; /* Slightly adjusted for tablet */
  }
  
  #hero-229 .cs-title {
      margin-bottom: 0.75rem;
  }
  
  #hero-229 .cs-text {
      margin-bottom: 2rem; /* Kept to maintain bottom distance */
  }
}

/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-229 {
      background-attachment: fixed;
  }
    #hero-229 .cs-container {
    margin-top: 10rem; /* Additional control for huge screens */
  }

  #hero-229 .cs-picture img {
      display: block;
  }
}

/* Mobile adjustments */
@media only screen and (max-width: 767px) {
  #hero-229 {
      height: auto;
      min-height: 100vh;
  }
  
  #hero-229 .cs-container {
    margin-top: 3rem; /* Adjusted for mobile */
  }
  
  #hero-229 .cs-watermark {
    margin: 0 auto 0.25rem; /* Minimized for mobile */
  }
  
  #hero-229 .cs-title {
      font-size: clamp(1.5rem, 8vw, 2.5rem);
      margin-bottom: 0.25rem; /* Minimized */
  }
  
  #hero-229 .cs-text {
      font-size: clamp(1.125rem, 4vw, 1.25rem); /* Kept */
      padding: 1.25rem 1rem 3rem 1rem; /* Kept */
      max-width: 90%; /* Kept */
      margin-bottom: 2rem; /* Kept to maintain bottom distance */
  }
  
  #hero-229 .cs-button-transparent {
      padding: 0.875rem 1.75rem;
      font-size: 1rem;
  }
}

#hero-229 {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cs-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}

/* Background image container */
#hero-229 .cs-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#hero-229 .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep all your existing .cs-container, .cs-title, .cs-text styles as is */
