html {
  scroll-behavior: smooth;
}

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

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;

  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, rgba(0, 126, 166, 1), rgba(0, 87, 115, 1));
}

/* Header */
.navbar {
  background: linear-gradient(
    90deg,
    rgba(1, 95, 125, 1) 0%,
    rgba(0, 126, 166, 1) 80%,
    rgba(0, 126, 166, 1) 100%
  );
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
}

.navbar__item {
  margin: 0;
}

.navbar__links {
  padding: 0;
  line-height: 80px;
  text-decoration: none;
  display: inline-block;
}

.navbar__links {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar__links:hover {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.navbar__btn .Button:hover {
  background: rgba(0, 87, 115, 1);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.navbar__actions {
  display: flex;
  list-style: none;
  gap: 15px;
}

.navbar__btn .Button {
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    rgba(0, 126, 166, 1) 0%,
    rgba(0, 87, 115, 1) 100%
  );
  border: 1px solid rgb(0, 76, 97);
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

#phone {
  border: none;
  background: none;
}
.navbar__btn .Button:hover {
  background: rgba(0, 87, 115, 1);
}

.navbar__toggle {
  display: none;
}

.navbar__toggle .bar {
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

@media screen and (max-width: 1400px) {
  .navbar__menu {
    border-top: 0.4px solid #fff;
    display: grid;
    grid-template-columns: auto;
    position: absolute;
    top: -1000px;
    right: 0;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    background: linear-gradient(
      90deg,
      rgba(0, 126, 166, 1) 0%,
      rgba(0, 87, 115, 1) 100%
    );
    color: white;
    text-align: center;
    padding: 20px 10px;
    height: auto;
  }

  .navbar__menu.active {
    top: 80px;
    opacity: 1;
    z-index: 99;
  }

  .navbar__menu li {
    margin: 10px 0;
  }

  .navbar__btn .Button {
    background: linear-gradient(90deg, #005f7d 0%, #007ea6 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    width: 80%;
  }

  .navbar__btn .Button:hover {
    background: #004d63;
  }

  .navbar__menu {
    transition: top 0.3s ease, opacity 0.3s ease;
  }

  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  .navbar__toggle.is-active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.is-active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
}

.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #017580;
}

.content h1 {
  font-size: 2.4rem;
  color: #017580;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #017580;
  padding-bottom: 10px;
}

.content p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.8;
}

.content p strong {
  font-weight: bold;
}

.content a {
  color: #017580;
  text-decoration: none;
  font-weight: bold;
}

.content a:hover {
  color: #00ced1;
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1b2838, #0d1117);
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-section {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: rgba(0, 126, 166, 1);
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 126, 166, 1);
  padding-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  text-decoration: none;
}

.footer-section a:hover {
  color: #00ced1;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 126, 166, 1);
  transition: all 0.3s ease;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.social-icons a:hover {
  background-color: #017580;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #444444;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.footer-bottom p {
  margin: 0;
}
