/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #D41323;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8em;
  margin: 0;
  font-weight: 900;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.2em;
  font-weight: 500;
  margin-top: 10px;
}

/* Navigation */
nav {
  background-color: #fff;
  border-bottom: 2px solid #D41323;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #D41323;
  font-weight: bold;
  font-size: 1em;
}

.nav-links a:hover {
  color: #a10f1a;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #D41323;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Main Content */
main {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h2 {
  color: #D41323;
  text-align: center;
  margin-bottom: 10px;
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Images */
.feature-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
}

/* Call to Action */
.cta {
  text-align: center;
  margin-top: 20px;
}

.cta a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #D41323;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta a:hover {
  background-color: #a10f1a;
}
