/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: smooth;
  color: #333;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ffcc00;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  padding: 20px;
  background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 60, 114, 0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffcc00;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.cta-button {
  padding: 15px 30px;
  background: #ffcc00;
  color: #1e3c72;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #e6b800;
}

/* Section Styles */
section {
  padding: 60px 20px;
}
.features, .legal {
  max-width: 1200px;
  margin: auto;
}
.features h2, .legal h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1e3c72;
}

/* Features Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-item {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-item h3 {
  margin-bottom: 15px;
  color: #2a5298;
}

/* Testimonials Section */
.testimonial-section {
  background: #eef2f5;
}
.testimonials {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.testimonials h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #1e3c72;
}
.testimonial {
  font-style: italic;
  margin-bottom: 20px;
}

/* Legal Section Styles */
.legal-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  line-height: 1.6;
}
.legal-content h3 {
  margin-top: 20px;
  color: #2a5298;
}

/* Footer Styles */
footer {
  background: #1e3c72;
  color: #fff;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #ffcc00;
  text-decoration: none;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: rgba(30, 60, 114, 0.9);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    display: none;
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}
