/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: #f9fbfc;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: #fff;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.navbar ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #e0f7fa;
}

.hero h1 {
  font-size: 2.5rem;
  color: #0077b6;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2rem;
  color: #333;
}

.btn-primary {
  background: #0077b6;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #005f8d;
}

/* Features */
.features {
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0077b6;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.feature h3 {
  color: #00b4d8;
  margin-bottom: 10px;
}

/* FAQ */
.faq {
  background: #f1faff;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0077b6;
}

.faq-item {
  max-width: 700px;
  margin: 10px auto;
}

.faq-question {
  width: 100%;
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #e0f7fa;
  border-left: 3px solid #00b4d8;
  margin-top: 5px;
}

.faq-item:hover .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: #001f3f;
  color: #fff;
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer h4 {
  margin-bottom: 15px;
  color: #00b4d8;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
}

.footer ul li a:hover {
  color: #fff;
}

.footer p {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}
