/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9fc;
  color: #133c55;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Header and Logo */
header {
  background-color: #133c55;
  color: white;
  padding: 15px 10px;
  text-align: center;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-title img {
  height: 60px;
  max-width: 100%;
}

.logo-title h1 {
  font-size: 1.6rem;
  margin-top: 10px;
}

/* Nav Menu (no hamburger, always visible) */
nav {
  background-color: #386fa4;
  padding: 10px 0;
}

#nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

#nav-links li {
  margin: 5px 10px;
}

#nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
}

#nav-links a:hover {
  background-color: #2d5e90;
}

/* About Section */
.about-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.about-container {
  padding: 20px;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #133c55;
}

.about-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.about-image-container {
  width: 100%;
  text-align: center;
}

.about-image {
  width: 80%; /* Adjusts to 80% of its parent container */
  max-width: 600px; /* Ensures the image doesn't grow beyond 600px */
  height: auto; /* Automatically adjusts height based on aspect ratio */
  object-fit: contain; /* Ensures the image stays fully visible */
  border-radius: 8px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-image {
    width: 100%; /* Full width on smaller screens */
    max-width: 100%; /* No max-width, it takes full screen width */
    height: auto;
    object-fit: contain; /* Ensures the image fits well */
    margin-top: 15px;
  }
}


/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background-color: #133c55;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

footer a {
  color: white;
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

footer a:hover {
  color: #91e5f6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-title {
    flex-direction: column;
    text-align: center;
  }

  .about-section {
    margin: 20px;
    padding: 15px;
  }

   #nav-links a {
    font-size: 0.9rem;
    padding: 4px 6px;
  }

  .whatsapp-btn {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  footer {
    padding: 15px 10px;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
    text-align: center;
  }

  .about-image {
    width: 100%;
    max-width: 90%;
    height: auto;
    margin-top: 15px;
  }
}
