@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #FBF6DB;
}

.hero {
  min-height: 100vh;
  background-image: url('hero-image.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: 2em;
}
.container-xxl {
  max-width: 1200px;
  margin: 3em;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: 4em;
  color: #F6F6F6;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('hero-image.webp') no-repeat center center fixed;
  background-size: cover;
  z-index: -1;
  opacity: 0.7;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #fff;
  color: #000;
}

.content {
  padding: 5rem 0;
  text-align: left;
}

.Title-first{
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #1E534D;
}

.content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #1E534D;
}

.content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #579C87;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
