:root {
  --primary-blue: #2c3e60;
  --highlight-gold: #ebb148;
  --text-color: #5a667f;
  --white: #ffffff;
  --font-family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--primary-blue);
  line-height: 1.6;
  display: block;
  min-height: auto;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.main-logo {
    max-width: 250px;
    height: auto;
    margin-top: 20px;
}

.top-tagline {
  font-weight: 400;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.main-title .dash {
  color: #6c757d;
  font-weight: 400;
  margin-right: 5px;
}

.main-title .highlight {
  color: var(--highlight-gold);
}

.break-line {
  display: block;
  margin-top: 5px;
}

.description {
  font-size: 1rem;
  color: #5d6778;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.why-choose-title {
  color: var(--highlight-gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #5d6778;
  font-size: 1rem;
}

.features-list li {
  margin-bottom: 8px;
}

.features-list li strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.cta-text {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-button-container {
  margin-top: 15px;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  background-color: #2c4266;
  color: var(--white);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #1e2a4a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
  }

  .top-tagline {
    font-size: 1rem;
  }

  .description {
    font-size: 0.95rem;
  }
}
