/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* Header Styles */
header {
  background: #004080;
  color: #fff;
  padding: 20px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
}
nav ul {
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #fff;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #ffcc00;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #0066cc, #00ccff);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
#hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}
#hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}
.cta-btn {
  background: #ffcc00;
  color: #004080;
  padding: 15px 30px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #e6b800;
}

/* Features Section */
#features {
  padding: 60px 20px;
  background: #fff;
}
#features .section-title {
  text-align: center;
  margin-bottom: 40px;
}
#features h2 {
  font-size: 2em;
  margin-bottom: 10px;
}
#features p {
  font-size: 1em;
  color: #666;
}
.features-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  flex: 1 1 280px;
  text-align: center;
}
.feature-item h3 {
  margin-bottom: 10px;
  color: #004080;
}

/* About Section */
#about {
  padding: 60px 20px;
  background: #f9f9f9;
}
#about .section-title {
  text-align: center;
  margin-bottom: 40px;
}
#about p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 1.1em;
  color: #555;
}
.about-cta {
  display: block;
  width: 220px;
  margin: 20px auto;
  text-align: center;
  background: #004080;
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.about-cta:hover {
  background: #003366;
}

/* Testimonials Section */
#testimonials {
  padding: 60px 20px;
  background: #fff;
}
#testimonials .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 5px;
  flex: 1 1 300px;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial span {
  font-weight: bold;
  color: #004080;
}

/* Policy Sections (Privacy Policy, Terms & Conditions, Affiliate Disclaimer) */
#policies {
  padding: 60px 20px;
  background: #f9f9f9;
}
#policies .policy-item {
  max-width: 800px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
#policies h3 {
  margin-bottom: 15px;
  color: #004080;
}
#policies p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 20px;
}
footer p {
  font-size: 0.9em;
}

/* Responsive Styles */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2em;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
