/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background-color: #00447c;
  color: #fff;
  padding: 30px 0 20px 0;
  border-bottom: 4px solid #00a8e8;
  text-align: center;
}

.header-flex {
  max-width: 1100px;
  margin: 0 auto;
}

.logo-text {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation - horizontal */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00a8e8;
  border-bottom: 3px solid #00a8e8;
}

/* Main Content */
main {
  background: #fff;
  padding: 30px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}
main h2 {
  margin-bottom: 15px;
  color: #00447c;
  font-size: 1.6rem;
}
ul {
  list-style: none;
  padding-left: 0;
}
li {
  margin-bottom: 12px;
}

/* Contact Details */
.contact-list li i {
  margin-right: 8px;
  color: #00447c;
  width: 20px;
}
.contact-list li a {
  color: #333;
  text-decoration: none;
}
.contact-list li a:hover {
  text-decoration: underline;
}

/* Social Icons inline */
.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}
.social-icons a {
  font-size: 1.8rem;
  color: #00447c;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #007bb6;
}

/* Footer */
.site-footer {
  background: #00447c;
  color: #fff;
  padding: 15px 10px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 4px solid #00a8e8;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-text {
    font-size: 2.2rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 20px;
  }
}
