:root {
  --primary-color: #EB510F;
  --secondary-color: #121D42;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --success-color: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: var(--dark-color);
}

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

nav {
  background-color: white;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .container .nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

nav .container .nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 17px;
}

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

nav .container .nav a.selected {
  color: #777;
}

header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 100px 0;
  text-align: center;
}

header .container {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}

header .container .info {
  flex: 1;
}

header .container .image {
  flex: 2;
}

header .container .image img {
  width: 100%;
}

header h1 {
  font-size: 34px;
}

.logo {
  padding: 15px 0;
}

.logo img {
  width: 100%;
  max-width: 250px;
}

.motto {
  margin-top: 5px;
  margin-bottom: 20px;
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.exclusive-tag {
  background-color: rgba(255, 100, 0, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
  margin: 1.5rem 0;
}

.trial-offer {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.benefits {
  padding: 100px 0;
  background-color: white;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: solid 1px #ccc;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 40px;
  display: inline-block;
  margin-bottom: 5px;
}

.benefit-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  padding: 100px 0;
  text-align: center;
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #c0392b;
}

.discount-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.faq-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.faq-question {
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.highlight {
  background-color: rgba(46, 204, 113, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
  color: var(--success-color);
}

.already {
  color: white;
  display: block;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .logo {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
  .exclusive-tag {
    font-size: 0.9rem;
  }
}