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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  color: #00898a;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.7rem;
  }
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #00898a;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #005152;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary, .btn-submit {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00898a;
  color: #fff;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover, .btn-submit:hover {
  background-color: #005152;
  color: #fff;
}

.btn-submit {
  width: 100%;
  font-size: 1.1rem;
}

.cookies-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 800px;
  width: 90%;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  z-index: 999;
  border: 1px solid #00898a;
}

.cookies-popup h2 {
  margin-bottom: 15px;
  text-align: center;
}

.cookies-popup p {
  margin-bottom: 20px;
  text-align: center;
}

.cookies-popup .cookies-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

@media (max-width: 480px) {
  .cookies-popup .cookies-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookies-popup .cookies-buttons button {
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookies-popup .cookies-buttons .btn-deny {
  background-color: #fff;
  color: #00898a;
  border: 1px solid #00898a;
}

.cookies-popup .cookies-buttons .btn-deny:hover {
  background-color: #f0f0f0;
}

.cookies-popup .cookies-buttons .btn-accept {
  background-color: #00898a;
  color: #fff;
}

.cookies-popup .cookies-buttons .btn-accept:hover {
  background-color: #005152;
}

.cookies-popup.hidden {
  display: none;
}

.header {
  background-color: #00898a;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .header .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.header .logo a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.header .main-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 576px) {
  .header .main-nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}

.header .main-nav ul li a {
  color: #fff;
  font-weight: 500;
}

.header .main-nav ul li a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #002e2e;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#004646), to(#001e1e));
  background-image: linear-gradient(to bottom right, #004646, #001e1e);
  background-image: url(./assets/1.png);
  background-size: cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-content h1 {
  margin-bottom: 25px;
}

.hero .hero-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.about {
  padding: 80px 0;
}

.about .about-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .about .about-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.about .about-content .about-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about .about-content .about-text h2 {
  color: #00898a;
}

.services {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services .services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .services .services-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services .services-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.services .service-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.services .service-card .service-icon {
  margin-bottom: 20px;
}

.services .service-card .service-icon img {
  width: 50px;
  height: 50px;
}

.services .service-card h3 {
  color: #00898a;
  margin-bottom: 15px;
}

.relationships {
  padding: 80px 0;
}

.relationships .relationships-content {
  background-color: #fff;
  border: 1px solid #00898a;
  border-radius: 4px;
  padding: 40px;
}

.relationships .relationships-content h2 {
  color: #00898a;
  margin-bottom: 20px;
}

.benefits {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.benefits .benefits-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 992px) {
  .benefits .benefits-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.benefits .benefits-content .benefits-image img {
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefits .benefits-content .benefits-text h2 {
  color: #00898a;
  margin-bottom: 25px;
}

.benefits .benefits-content .benefits-text ul li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.contact {
  padding: 80px 0;
  background-color: #002e2e;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#004646), to(#001e1e));
  background-image: linear-gradient(to bottom right, #004646, #001e1e);
  background-image: url(./assets/1.png);
  background-size: cover;
}

.contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
}

.contact form .form-group input:focus {
  outline: none;
  border-color: #00898a;
}

.footer {
  background-color: #000;
  padding: 20px 0;
}

.footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .footer .footer-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}

.footer .footer-links a {
  color: #fff;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

.success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 150px);
  text-align: center;
}

.success .success-content h1 {
  color: #00898a;
  margin-bottom: 40px;
}

.privacy{
  padding-top: 50px;
  padding-bottom: 50px;
  h1{
    margin-bottom: 40px;
  }
  }
}