:root {
  --primary-color: #FF5A36; /* Coral/orange */
  --secondary-color: #242D52; /* Dark blue */
  --accent-color: #FBF5F0; /* Light beige */
  --text-color: #242D52;
  --text-light: #9095A7;
  --white: #ffffff;
  --border-radius: 30px;
}

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

body {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--secondary-color);
}

p {
  color: var(--text-light);
}

/* Background Shape */
.bg-shape {
  position: absolute;
  z-index: -1;
}

.bg-shape-top {
  top: 0;
  right: 0;
  width: 50%;
  height: 70vh;
  background-color: var(--accent-color);
  border-bottom-left-radius: 100%;
}

.bg-shape-bottom {
  bottom: 0;
  left: 0;
  width: 30%;
  height: 30vh;
  background-color: var(--accent-color);
  border-top-right-radius: 100%;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 90, 54, 0.3);
}

.btn-primary:hover {
  background-color: rgba(255, 90, 54, 0.9);
  border-color: rgba(255, 90, 54, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 90, 54, 0.4);
}

/* Navigation */
.navbar {
  padding: 1.5rem 0;
}

.navbar-brand img {
  height: 30px;
}

.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  margin-bottom: 2rem;
  max-width: 470px;
}

.hero-img-container {
  position: relative;
}

.stats-container {
  position: relative;
  margin-top: 3rem;
}

.stat-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.stat-change {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  position: relative;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-number {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  margin-right: 1rem;
}

.feature-title {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.feature {
  margin-bottom: 2.5rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background-color: #F5F6F8;
  padding: 3rem 2rem 2rem;
  border-radius: 10px;
  position: relative;
  margin-top: 3rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  padding: 4rem 0;
  color: var(--white);
}

.cta h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0;
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
  background-color: #1E1E26;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  margin-bottom: 2rem;
  height: 25px;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-newsletter input {
  background-color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  width: 100%;
  margin-bottom: 1rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .navbar-collapse {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn-primary {
    display: block;
    margin: 0 auto;
  }

  .features h2 {
    font-size: 2rem;
    text-align: center;
  }

  .feature-number {
    margin-bottom: 0.5rem;
  }

  .feature {
    text-align: center;
  }

  .testimonials h2 {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .cta .btn-white {
    display: block;
    margin: 0 auto;
  }

  .footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 2rem;
  }
}
