*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  font-family: "Dosis", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 999;
  background: #0b1120;
  transition: background-color 0.4s ease, padding 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ebf5fb;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar .nav-links li a:hover {
  color: rgba(229, 229, 229, 0.969);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 8px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 11px 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.13);
    line-height: 0;
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 7px 4px;
  }
  
  .nav-links {
    gap: 7px;
  }
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

body {
  font-family: "Roboto", "Dosis", "Oswald", Arial, sans-serif;
}

.about-section {
  padding: 40px;
  background-color: #f8fcff;
  padding-top: 85px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h1 {
  font-size: 2rem;
  color: #002855;
}

.section-header hr {
  width: 50px;
  height: 3px;
  background-color: #00b4d8;
  border: none;
  margin: 10px auto 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-flex {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.logo-container {
  flex: 1;
  text-align: center;
}

.logo {
  width: 120px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.intro-content {
  flex: 2;
}

.intro-content h2 {
  font-size: 1.4rem;
  color: #002855;
}

.intro-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.contact-btn {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #00b4d8;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #0077b6;
}

.mission-vision-flex {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mission,
.vision {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.icon {
  font-size: 1.4rem;
  color: #00b4d8;
  margin-bottom: 10px;
}

.mission h3,
.vision h3 {
  font-size: 1.1rem;
  color: #002855;
  margin-bottom: 10px;
}

.mission p,
.vision p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .about-section {
    padding: 30px;
    padding-top: 75px;
  }
  
  .container {
    max-width: 95%;
  }
  
  .section-header h1 {
    font-size: 1.7rem;
  }
  
  .intro-flex {
    gap: 20px;
  }
  
  .logo {
    width: 110px;
  }
}

@media (max-width: 992px) {
  .logo {
    width: 100px;
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 25px;
    padding-top: 65px;
  }
  
  .container {
    max-width: 98%;
  }
  
  .section-header h1 {
    font-size: 1.5rem;
  }
  
  .intro-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  
  .logo {
    width: 100px;
    max-width: 120px;
    margin: 0 auto;
  }
  
  .intro-content h2 {
    font-size: 1.1rem;
  }
  
  .mission-vision-flex {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 20px;
    padding-top: 55px;
  }
  
  .section-header h1 {
    font-size: 1.3rem;
  }
  
  .intro-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .logo {
    width: 90px;
    max-width: 100px;
  }
  
  .intro-content h2 {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 15px;
    padding-top: 52px;
  }
  
  .section-header h1 {
    font-size: 1.2rem;
  }
  
  .intro-flex {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .logo {
    width: 80px;
    max-width: 90px;
  }
  
  .intro-content h2 {
    font-size: 1rem;
  }
  
  .intro-content p {
    font-size: 0.9rem;
  }
  
  .mission,
  .vision {
    padding: 10px;
    font-size: 0.8rem;
  }
  
  .icon {
    font-size: 1rem;
  }
}

.footer {
  width: 100%;
  background: linear-gradient(90deg, #181e26 0%, #28374c 100%);
  color: #f4f6fb;
  padding-top: 3vw;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  padding: 0 2.5vw;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 180px;
  flex: 1;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 1.1em;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 7px;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 32px;
  height: 2.5px;
  background: #00b4d8;
  border-radius: 2px;
  margin-top: 3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  display: flex;
  align-items: flex-start;
}

.footer-col ul li i {
  margin-right: 10px;
  font-size: clamp(1rem, 1.8vw, 1.1em);
  color: #00b4d8;
  margin-top: 2px;
}

.footer-col ul li a {
  color: #e3e8f3;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #00b4d8;
  text-decoration: underline;
  outline: none;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 0;
  width: 88%;
}

.footer-bottom {
  text-align: center;
  padding: 1em 0 0.6em 0;
  font-size: clamp(0.8rem, 1.2vw, 0.98rem);
  color: #bbb;
  background: #151515;
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) {
  .footer-container {
    max-width: 970px;
    padding-left: 3vw;
    padding-right: 3vw;
    gap: 2vw;
  }
}

@media (max-width: 900px) {
  .footer-container {
    max-width: 700px;
    padding-left: 4vw;
    padding-right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 2vw;
  }
  
  .footer-col {
    margin-bottom: 1rem;
    width: 100%;
    min-width: 120px;
  }
}

@media (max-width: 700px) {
  .footer-container {
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  
  .footer-col {
    margin-bottom: 1rem;
  }
  
  .footer-divider {
    width: 94%;
  }
}

@media (max-width: 600px) {
  .footer {
    padding-top: 20px;
  }
  
  .footer-container {
    padding: 0 4.5vw;
  }
  
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.7em;
  }
  
  .footer-col ul li {
    font-size: 0.85rem;
  }
  
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 0.9em 0 0.5em 0;
    font-size: 0.7rem;
  }
}
