* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  background: #f4f9ff;
  color: #333;
}

/* NAVBAR */
.main-nav {
  background: #00334e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
}

.main-nav .logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
}

.main-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.highlight {
  background: #00a8e8;
  padding: 8px 16px;
  border-radius: 20px;
}

/* PAGE TITLE */
.page-title {
  background: #0077b6;
  color: white;
  padding: 35px 20px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  font-size: 30px;
}

/* LOGIN SECTION */
.login-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.login-box {
  background: white;
  width: 100%;
  max-width: 420px;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.login-box label {
  font-size: 14px;
  font-weight: 500;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin: 8px 0 20px;
  border-radius: 6px;
  border: 1.5px solid #ccc;
}

.login-box button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background: #0077b6;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.login-box button:hover {
  background: #023e8a;
}

/* KNOW MORE SECTION */
.know-more {
  background: linear-gradient(135deg, #00334e, #005f8a);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.know-more h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.know-more p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  margin-top: 25px;
  background: #7ac143;
  color: black;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.know-more-section {
  background: linear-gradient(
    180deg,
    #0f4c75 0%,
    #0b5c7a 50%,
    #053b5f 100%
  );
  padding: 85px 20px 95px;
  text-align: center;
}


.know-more-container {
  max-width: 1100px;
  margin: 0 auto;
}

.know-more-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.know-more-text {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 10px;
}

.know-more-subtext {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 34px;
}

/* Highlight Green (Yora style) */
.green-text {
  color: #7ed321;
  font-weight: 600;
  text-decoration: none;
}


/* CONTACT BUTTON – matched */
.contact-btn {
  display: inline-block;
  background-color: #7ed321;
  color: #0b0b0b;

  padding: 12px 36px;
  border-radius: 4px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;

  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background-color: #6bb81c;
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: #00334e;
  color: white;
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
}
