/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  
}

header {
  background-color: #004d40;
  color: white;
  padding: 1rem;
  text-align: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 2rem;
  background-color: #e0f2f1;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.box {
  background-color: #b2dfdb;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  font-size: 1.2rem;
}

.footer {
  background-color: #004d40;
  color: white;
  padding: 20px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-left p {
  margin: 0;
  font-size: 14px;
}

.footer-middle ul,
.footer-right ul {
  list-style-type: none;
  padding: 0;
}

.footer-middle li,
.footer-right li {
  display: inline;
  margin: 0 15px;
}

.footer-middle a,
.footer-right a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-middle a:hover,
.footer-right a:hover {
  text-decoration: underline;
}

.social-links a {
  font-size: 18px;
}

/* Responsive Typography */
h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
}

/* Media Queries for smaller devices */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
.slideshow-container {
  max-width: 600px;
  max-height: 400px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.hdab {
  font-size: 2.5rem;
  font-family: "Space Grotesk";
}

.cn {
  font-size: 2rem;
  font-family: "Space Grotesk";
}

.about {
  column-count: 2;
  column-gap: 3rem;
  padding: 2rem;
}

@media (max-width: 768px) {
  .about {
    column-count: 1;
    column-gap: 1rem;
    padding: 1rem;
  }

  .hdab, .cn {
    font-size: 1.5rem;
    text-align: center;
  }

  .about img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
  }
}


ul {
  list-style-type: disc; /* You can also use circle, square, none */
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.see-more-btn {
  background-color: #ff5722;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.see-more-btn:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}