html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
}

.container-box {
  padding: 10px 55px;
}
@media (max-width: 768px) {
  .container-box {
    padding: 10px 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Source Sans 3", sans-serif;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  background: inherit;
}

.hero img {
  width: 350px;
  height: 350px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 30px 0 10px;
}

.hero p {
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 30px;
  color: #666666;
  max-width: 1000px;
}

@media (max-width: 768px) {
  .hero img {
    width: 200px;
    height: 200px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

.cta-section {
  background: linear-gradient(135deg, #f9e8ae, #f0dea4, #d4bb80, #ad8d4e);
  text-align: center;
  padding: 80px 20px;
  margin-top: 80px;
  margin-bottom: 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.cta-section .counter-container {
  display: flex;
  justify-content: space-around;
}

.cta-section .counter-container .counter {
  text-align: center;
}

.cta-section .counter-container .counter h2 {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -6px;
  line-height: 0.7;
}

.cta-section .counter-container .counter p {
  font-size: 1.5rem;
  color: rgb(161, 161, 170);
  font-weight: 500;
}

@media (max-width: 992px) {
  .cta-section .counter-container {
    display: flex;
    flex-direction: column;
  }
  .cta-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .cta-section .counter-container .counter h2 {
    font-size: 3rem;
  }
  .cta-section .counter-container .counter p {
    font-size: 1.2rem;
  }
}

.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-section .titler h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.form-section .titler .mute {
  color: rgb(161, 161, 170);
}

.form-section .form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-section .form .form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666666;
}

.form-section .form .form-input {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  background-color: #f5f5f5;
  color: #666666;
}

.form-section .form .form-input::placeholder {
  color: rgb(161, 161, 170);
  font-size: 0.9rem;
}

.custom-btn {
  width: 100%;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  background-color: #000000;
  color: #f5f5f5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-btn:hover {
  background-color: #333333;
  color: #f5f5f5;
}

@media (max-width: 768px) {
  .form-section .titler h1 {
    font-size: 3.5rem;
  }
}

.features-section {
  padding: 80px 0px;
}

.features-section .features-container {
  display: flex;
  flex-direction: row;
}

.features-section .features-container .bg-brown {
  background-color: #ad8e4f;
  text-align: right;
}

.features-section .features-container .bg-light-brown {
  background-color: #fae9b0;
  text-align: left;
}

.features-section .features-container {
  display: flex;
}

.features-section .features-container .features-content-left {
  /* max-width: 340px; */
  padding-top: 160px;
  padding-right: 8px;
  width: 100%;
}

.features-section .features-container .features-content-right {
  /* max-width: 340px; */
  padding-top: 160px;
  padding-left: 8px;
  width: 100%;
}

.features-section .features-container .features-content-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #f5f5f5;
  max-width: 600px;
  margin: 10px auto;
}

.features-section .features-container .features-content-right h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  max-width: 600px;
  margin: 80px auto 10px;
}

.features-section .features-container .features-content-left p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #f5f5f5;
  max-width: 600px;
  margin: 0 auto;
}

.features-section .features-container .features-content-right p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.features-section .features-container .features-content-left img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 80px;
}

.features-section .features-container .features-content-right img {
  width: 450px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .features-section .features-container {
    flex-direction: column;
  }
  .features-section .features-container .features-content-left {
    padding-right: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .features-section .features-container .features-content-right {
    padding-left: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .features-section .features-container .bg-brown {
    padding: 0 16px;
  }
  .features-section .features-container .bg-light-brown {
    padding: 0 16px;
  }
  .features-section .features-container .features-content-left h2,
  .features-section .features-container .features-content-right h2 {
    font-size: 1.8rem;
  }
  .features-section .features-container .features-content-left p,
  .features-section .features-container .features-content-right p {
    font-size: 1.2rem;
  }
  .features-section .features-container .features-content-left img,
  .features-section .features-container .features-content-right img {
    width: 350px;
    height: 350px;
    margin-top: 40px;
  }
  .features-section .features-container .features-content-right h2 {
    margin: 40px auto 10px;
  }
  .features-section .features-container .features-content- h2 {
    margin: 40px auto 10px;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  background: inherit;
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-img {
  width: auto;
  height: 100px;
}

@media (max-width: 768px) {
  .footer .footer-img {
    height: 80px;
  }
}

.footer .footer-content h2 {
  font-size: 2rem;
  font-weight: 700;
}

.footer .footer-content p {
  font-size: 1rem;
  font-weight: 500;
  max-width: 600px;
  color: #666666;
  max-width: 1000px;
  margin-bottom: 10px;
}

.footer .footer-content p a {
  text-decoration: none;
  color: #666666;
  text-decoration: underline;
  transition: all 0.6s ease;
}

.footer .footer-content p a:hover {
  text-decoration: underline;
  color: #444444;
}

.footer .footer-content p .underline:hover {
  text-decoration: underline;
}

.footer .footer-content .para-mini {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .footer .footer-content h2 {
    font-size: 1.5rem;
  }
}

.content-section {
  padding: 80px 0;
}

.content-container {
}

.content-section .content-container h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666666;
}

.content-section .content-container p {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.5;
}

.content-section .content-container ul {
  list-style-type: disc;
  padding-left: 20px;
}

.content-section .content-container ul.number {
  list-style-type: decimal;
}

.content-section .content-container ul li {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.5;
}

.content-section .content-container ul li a,
.content-section .content-container p a {
  text-decoration: underline;
  color: #666666;
  transition: all 0.6s ease;
}
.content-section .content-container ul li a:hover,
.content-section .content-container p a:hover {
  text-decoration: underline;
  color: #444444;
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
}
