
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f7fb;
  color: #333;
}

/* Navbar */
.landing-navbar {
  background-color: #003264;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.landing-navbar .logo img {
  height: 60px;
}

.landing-navbar .nav-buttons {
  display: flex;
  gap: 16px;
}

.nav-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 6px;
  border: 2px solid white;
  transition: background-color 0.3s, color 0.3s;
}

.nav-btn:hover {
  background-color: white;
  color: #003264;
}

.nav-btn.filled {
  background-color: #ff6f00;
  border: none;
}

.nav-btn.filled:hover {
  background-color: #e65c00;
  color: white;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background-color: #004b92;
  color: white;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-cta .cta-btn {
  padding: 12px 24px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.cta-btn {
  background-color: #ff6f00;
  color: white;
}

.cta-btn:hover {
  background-color: #e65c00;
}

.cta-btn.secondary {
  background-color: white;
  color: #004b92;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background-color: #e6f0ff;
}

/* Hero Image */
.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  max-width: 75%;
  height: auto;
}

/* Features Section */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 10%;
  background-color: #fff;
  text-align: center;
}

.feature {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.feature i {
  color: #004b92;
  margin-bottom: 10px;
}

.feature h3 {
  margin: 10px 0;
  font-size: 20px;
}

/* About Section */
.about {
  padding: 60px 15%;
  background-color: #e6f0ff;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
}

/* Footer */
.landing-footer {
  background-color: #003264;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #ffffffcc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}
