:root {
  --dark-teal: #0A3D3F;
  --copper-orange: #C5662B;
  --ivory: #FFF9EF;
  --moss-green: #6A9A6B;
  --charcoal-gray: #2B2B2B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-teal);
  color: var(--charcoal-gray);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--dark-teal);
  color: var(--ivory);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--ivory);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--copper-orange);
}

.hero {
  background-color: var(--dark-teal);
  color: var(--ivory);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: var(--copper-orange);
  color: var(--ivory);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #b55523;
}

section {
  padding: 80px 0;
  width: 100%;
}

.section-light {
  background-color: var(--ivory);
}

.section-dark {
  background-color: var(--dark-teal);
  color: var(--ivory);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--copper-orange);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark-teal);
}

.card-text {
  color: var(--charcoal-gray);
  margin-bottom: 15px;
}

.price {
  font-size: 24px;
  color: var(--copper-orange);
  font-weight: bold;
  margin: 10px 0;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  flex: 0 0 calc(50% - 15px);
  background-color: var(--ivory);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--charcoal-gray);
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: bold;
  color: var(--dark-teal);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--ivory);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--dark-teal);
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

footer {
  background-color: var(--dark-teal);
  color: var(--ivory);
  padding: 50px 0 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 0 250px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--copper-orange);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--copper-orange);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-teal);
  color: var(--ivory);
  padding: 15px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .card {
    flex: 0 0 calc(50% - 15px);
  }
  
  .testimonial {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  
  header {
    position: static; /* Remove sticky positioning for mobile */
  }
  
  .header-container {
    flex-direction: column;
  }
  
  nav {
    width: 100%;
    margin-top: 15px;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .card {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .card-img {
    height: 180px;
  }
  
  .testimonial {
    flex: 0 0 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
    color: var(--charcoal-gray);
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-col {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  input, select, textarea {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .card-title {
    font-size: 20px;
  }
  
  .price {
    font-size: 22px;
  }
  
  .form-container {
    padding: 15px;
  }
}

/* Wave separator */
.wave-separator {
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23FFF9EF'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wave-separator-inverse {
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%230A3D3F'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} 