
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9fb;
  font-size: 16px;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


a {
  color: #c71515;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #8a0f0f;
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #c71515;
  color: #fff;
}

.btn-primary:hover {
  background: #a01010;
}

.btn-secondary {
  background: #fff;
  color: #c71515;
  border: 2px solid #c71515;
}

.btn-secondary:hover {
  background: #c71515;
  color: #fff;
}

/* Inline CTA link */
.inline-cta {
  font-weight: 600;
  color: #c71515;
  text-decoration: underline;
}

.inline-cta:hover {
  color: #8a0f0f;
}


.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 50px;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav a {
  font-weight: 500;
  color: #333;
}

.nav a:hover {
  color: #c71515;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}


.hero {
  background: linear-gradient(135deg, #c71515, #f05a5a);
  color: #fff;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.content {
  padding: 60px 0;
}

.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.content h3 {
  font-size: 1.4rem;
  margin: 25px 0 10px;
  color: #c71515;
}

.content p {
  margin-bottom: 15px;
  color: #444;
}


.faq {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #c71515;
  margin-bottom: 8px;
}


.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

.footer nav a {
  color: #fff;
  margin: 0 10px;
}

.footer nav a:hover {
  text-decoration: underline;
}


@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav ul {
    display: none; 
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }
}
