:root {
  --primary-color: #0055a4;
  --secondary-color: #ef4135;
  --accent-color: #ffffff;
  --text-color: #333333;
  --background-color: #f5f5f5;
  --card-bg: #ffffff;
  --footer-bg: #0055a4;
  --btn-color: #ef4135;
  --btn-hover: #c72f25;
  --header-font: 'Montserrat', sans-serif;
  --body-font: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--body-font);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

header {
  background: var(--primary-color);
  color: var(--accent-color);
  padding: 2rem 0;
  position: relative;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.logo svg {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}

.logo-text {
  font-family: var(--header-font);
  font-size: 2rem;
  font-weight: 700;
}

.header-title {
  font-family: var(--header-font);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--btn-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cta-button:hover {
  background-color: var(--btn-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.main-content {
  padding: 4rem 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-title {
  font-family: var(--header-font);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-description {
  color: var(--text-color);
}

.how-it-works {
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--header-font);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--header-font);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.testimonials {
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary-color);
}

.faq {
  margin-bottom: 4rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  font-family: var(--header-font);
  position: relative;
}

.faq-answer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

footer {
  background-color: var(--footer-bg);
  color: var(--accent-color);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  width: 80px;
  height: 80px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }
  
  .header-description {
    font-size: 1rem;
  }
  
  .features,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .cta-button {
    padding: 10px 25px;
    font-size: 1rem;
  }
}
