html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e0e0e0;
  color: #004e92;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.cookies-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  padding: 4px;
  background: #f0f4f8;
  color: black;
}

.cookies-div p {
  margin-right: 10px;
  padding: 0;
}

.cookies-div button {
  color: black;
  background-color: white;
  cursor: pointer;
}

.header_div {
  background-color: #f0f4f8;
  border-bottom: 2px solid #d0e0e9;
  padding: 10px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  max-height: 50px;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #5a768b;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
  background-color: #daeaf3;
  color: #1a3c50;
}

nav ul li a:focus {
  outline: 2px solid #aec8d9;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

.footer_div {
  background-color: #f0f4f8;
  border-top: 2px solid #d0e0e9;
  padding: 20px 0;
  color: #5a768b;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

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

.footer-logo {
  flex: 1;
  text-align: center;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 10px;
}

.footer-nav {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
}

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

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

.footer-nav ul li a {
  text-decoration: none;
  color: #5a768b;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #1a3c50;
}

.footer-contact {
  flex: 1;
  text-align: center;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-contact a {
  color: #5a768b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #1a3c50;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #d0e0e9;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #8aa0b5;
}

.about-section {
  padding: 80px 20px;
  background-color: #f7f8fa;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #1a3c50;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.about-extra {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.about-extra-item {
  flex: 1;
  text-align: center;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-extra-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

.about-extra-item p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-extra {
    flex-direction: column;
  }
}

.services-section {
  padding: 60px 20px;
  background-color: #f7f8fa;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: 2.5rem;
  color: #004e92;
  text-align: center;
  margin-bottom: 20px;
}

.services-intro {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.service-item {
  margin-bottom: 40px;
}

.service-item h3 {
  font-size: 2rem;
  color: #004e92;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-item ul {
  list-style: disc inside;
  margin: 0;
  padding: 0;
}

.service-item ul li {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

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

  .service-item h3 {
    font-size: 1.8rem;
  }

  .services-intro,
  .service-item p {
    font-size: 1rem;
  }
}

.gallery-section {
  padding: 60px 20px;
  background-color: #f7f8fa;
  font-family: "Roboto", sans-serif;
  color: #333;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  font-size: 2.5rem;
  color: #004e92;
  margin-bottom: 20px;
}

.gallery-intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

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

  .gallery-intro {
    font-size: 1rem;
  }
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #f7f8fa;
  font-family: 'Roboto', sans-serif;
  color: #333;
  text-align: center;
}

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

.form-title {
  font-size: 2.5rem;
  color: #004e92;
  margin-bottom: 10px;
}

.form-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #004e92;
}

input,
textarea {
  width: 96%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
}

input:focus,
textarea:focus {
  border-color: #004e92;
  outline: none;
  box-shadow: 0 0 5px rgba(33, 27, 154, 0.5);
}

.submit-button {
  padding: 12px 20px;
  background-color: #004e92;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #004e92;
}

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

  .form-description {
    font-size: 1rem;
  }
}