/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: #f8f9fc;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
}

.logo h1 {
  font-size: 18px;
  font-weight: 700;
  color: #114b74;
}

/* NAVIGATION */
.navbar {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-list a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #114b74;
}

/* Dropdown Login */
.login-dropdown {
  background-color: #114b74;
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 16px;
  transition: 0.3s;
}

.login-dropdown:hover {
  background-color: #0d3a5c;
}

.dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-item:hover {
  background-color: #e3f3ff;
  color: #114b74;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #cfe4f5 0%, #e2eef9 100%);
  padding: 60px 80px;
  border-radius: 20px;
  margin: 40px 60px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 55%;
}

.hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #113a5b;
  line-height: 1.2;
}

.hero-content h3 {
  font-family: "Dancing Script", cursive;
  color: #ffffff;
  text-shadow: 1px 1px 3px #00000040;
  font-size: 24px;
  margin-top: 8px;
}

.hero-content p {
  margin-top: 20px;
  color: #333;
  line-height: 1.6;
}

.hero-image img {
  width: 400px;
  border-radius: 0px;
}

/* TIPS SECTION */
.tips {
  text-align: center;
  padding: 60px 40px;
  background-color: #f5f9ff;
}

.tips h2 {
  color: #113a5b;
  font-size: 24px;
  margin-bottom: 40px;
}

.tips-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.tip-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 30px;
  background-color: #e3f3ff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 15px;
}

.tip-card h3 {
  color: #113a5b;
  font-size: 16px;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .hero {
    flex-direction: column;
    padding: 30px;
    margin: 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-image img {
    width: 220px;
    margin-top: 20px;
  }

  .tips-container {
    flex-direction: column;
    align-items: center;
  }
}
