/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts & Colors */
body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f7faff;
  line-height: 1.7;
}

h1, h2, h3 {
  color: #003366;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 90vh;
  background: url('https://images.unsplash.com/photo-1608889175113-60a1be84caa2?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  text-decoration: none;
  background-color: #00aaff;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0077cc;
}

/* Section Styling */
.section {
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section p {
  margin-bottom: 1rem;
  text-align: justify;
}

/* Tips List */
.tips ul {
  list-style: disc;
  margin-left: 2rem;
  color: #333;
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-item h3 {
  color: #005b96;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}
