/* General Reset */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background: #0073e6;
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  max-height: 60px;
  margin-bottom: 0.5rem;
}

.header-text h1 {
  font-size: 2rem;
  margin: 0;
}

.header-text .subtitle {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Navigation Menu */
nav {
  background: #005bb5;
  padding: 0.5rem 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.nav-list a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background: #f0f8ff;
  text-align: center;
  padding: 3rem 0;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #ff8800;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
}

.cta-button:hover {
  background: #ff7000;
}

/* Features Section */
.features {
  background: #f9f9f9;
  padding: 3rem 0;
}

.features .feature-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.features .feature {
  flex: 1;
  text-align: left;
}

.features h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.features p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
  padding: 3rem 0;
}

.how-it-works ol {
  list-style: decimal inside;
  padding: 0;
}

.steps li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  background: #0073e6;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

.contact a.cta-button {
  background: #ff8800;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 1rem;
}

.contact a.cta-button:hover {
  background: #ff7000;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-title {
    flex-direction: column;
  }

  nav {
    padding: 1rem 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .features .feature-list {
    flex-direction: column;
    gap: 1.5rem;
  }
}
