body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}

header {
  background: linear-gradient(to right, #f12711, #f5af19);
  color: white;
  text-align: center;
  padding: 100px 20px 120px;
}

header img {
  width: 120px;
  margin-bottom: 20px;
}

.animated-text {
  font-size: 42px;
  font-weight: bold;
  display: inline-block;
}

nav {
  background: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #444;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  background: #f9f9f9;
  padding: 60px;
}

.about-container img {
  width: 600px;
  max-width: 100%;
  border-radius: 10px;
  
}

.about-content {
  max-width: 500px;
  text-align: left;
}

.highlight {
  color: #f12711;
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(to right, #f12711, #f5af19);
  color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

.highlight-box span {
  display: block;
}

.services, .features, .reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.box {
  background: #fff;
  padding: 25px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.cta-section {
  background: linear-gradient(to right, #f12711, #f5af19);
  color: white;
  padding: 60px 20px;
}

.cta-section button {
  background: white;
  color: #f12711;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #f9f9f9;
  color: #333;
  text-align: center;
  padding: 40px 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
}

.feature-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}



.testimonial {
  width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

 .pricing-section {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .pricing-header h4 {
    color: #ff6a00;
    font-weight: 600;
    text-transform: uppercase;
  }

  .pricing-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1e1e1e;
  }

  .pricing-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .pricing-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    background: white;
    position: relative;
    transition: transform 0.3s ease;
  }

  .pricing-box:hover {
    transform: translateY(-6px);
  }

  .pricing-box.popular {
    border: 2px solid #ff6a00;
    background: linear-gradient(to bottom right, #fffaf5, #fff7ee);
  }

  .badge-popular {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6a00;
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 10px;
    font-weight: 600;
  }

  .pricing-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1e1e;
  }

  .pricing-box h2 {
    color: #ff6a00;
    font-size: 32px;
    margin-bottom: 20px;
  }

  .pricing-box h2 span {
    font-size: 16px;
    color: #777;
  }

  .pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #444;
    line-height: 1.6;
  }

  .pricing-box ul li::before {
    content: "✔";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
  }

  .pricing-box button {
    width: 100%;
    background: linear-gradient(to right, #ff6a00, #ffa500);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .pricing-box button:hover {
    background: linear-gradient(to right, #ffa500, #ff6a00);
  }


/* Feedback Section */
.feedback-section {
  background: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.feedback-section .subheading {
  color: #F76C1F;
  font-weight: 600;
  margin-bottom: 10px;
}

.feedback-section .heading {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.client-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #222;
}

.stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

.client-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.client-role {
  color: #777;
  font-size: 14px;
}

/* Call to Action Section */
.cta-section {
  background-color: #F76C1F;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-section .cta-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-section .cta-text {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-section .cta-button {
  background-color: #fff;
  color: #F76C1F;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
  background-color: #f1f1f1;
  color: #d35400;
}


/* Footer */
.footer {
  background-color: #ffffff;
  color: #555;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px 20px;
  border-top: 1px solid #e0e0e0;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4.footer-brand {
  font-size: 20px;
  font-weight: bold;
  color: #487fae;
  margin-bottom: 10px;
}

.footer-column h5 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column ul li a {
  color: #487fae;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  padding: 15px 0 5px;
  color: #487fae;
  border-top: 1px solid #ddd;
  margin-top: 30px;
}

body.policy-page {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #f0572c, #f7a033); /* your orange gradient */
  color: #fff;
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-header {
  text-align: center;
  padding: 50px 20px 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-top: 10px;
}

.logo {
  height: 70px;
  width: auto;
}

.page-content {
  background: #fff;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-content h2 {
  color: #f0572c;
  margin-top: 30px;
}

.page-content a {
  color: #f0572c;
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .animated-text {
    font-size: 28px;
  }
}
