@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #1A2A6C;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin: 5px 0 15px;
  font-size: 1.2em;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #F4B400;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 40px 20px;
}

.hero img {
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #C8102E;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 15px;
}

.quote {
  background-color: #F4B400;
  color: #1A2A6C;
  padding: 30px 20px;
  text-align: center;
  font-style: italic;
  font-size: 1.2em;
}

footer {
  background-color: #1A2A6C;
  color: white;
  text-align: center;
  padding: 15px 0;
}