 /* Global Font Styles */
body {
      font-family: "Geologica", sans-serif;

}

h1, h2, h3, h4, h5, h6, .call-btn {
      font-family: "Geologica", sans-serif;
    }


 .top-banner {
      background-color: #c62828;
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 15px;
      letter-spacing: 1px;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 30px;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

   .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.brand-icon {
  background-color: #b71c1c;
  color: white;
  font-size: 22px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
}

.brand-name span {
  color: #b71c1c;
}


  /* General Navigation Styles */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #c62828;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
}

nav a:hover {
  color: #000;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #c62828;
  margin: 4px 0;
  border-radius: 5px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
  padding: 10px 0;
  font-size: 16px;
  color: #d32f2f;
  text-decoration: none;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }
}


    /* Hero Section */
    .hero-section {
  background: url('../images/logo/banner.webp') no-repeat center center/cover;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 14px 18px;       /* More inner padding */
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-sizing: border-box;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #999;
  font-size: 15px;
  opacity: 1;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #b71c1c;
}

.hero-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.hero-content a {
  background-color: #d32f2f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero-content a:hover {
  background-color: #b71c1c;
}

.hero-form {
  flex: 1;
  min-width: 280px;
}

.hero-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-form input {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.hero-form button {
  background-color: #b71c1c;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background-color: #a11414;
}

/* Mobile-first: Form appears first */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column-reverse;
    padding: 50px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-form h3 {
    font-size: 20px;
  }
  .hero-form {
  flex: 1;
  min-width: 100%;
}
}


     .info-section {
    background: #fff8f8;
    padding: 80px 20px;
    text-align: center;
  }

  .info-section .container {
    max-width: 800px;
    margin: auto;
  }

  .info-section h2 {
    font-size: 32px;
    color: #b71c1c;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .info-section .underline {
    width: 60px;
    height: 3px;
    background-color: #d32f2f;
    margin: 10px auto 25px;
  }

  .info-section p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
  }

  @media (max-width: 600px) {
    .info-section h2 {
      font-size: 26px;
    }

    .info-section p {
      font-size: 16px;
    }
  }

    .impact-section {
    background-color: #f0f4ff;
    padding: 80px 20px;
  }

  .impact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .circle {
    background: #d32f2f;
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .stat-text {
    font-size: 16px;
    color: #333;
    max-width: 300px;
  }

  .impact-content h2 {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 15px;
  }

  .impact-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 700px;
    margin-inline: auto;
  }

  .cta-button {
    padding: 12px 28px;
    border-radius: 25px;
    background-color: #1a237e;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta-button:hover {
    background-color: #0d154a;
  }

  @media (min-width: 768px) {
    .impact-container {
      grid-template-columns: 1fr 1fr;
      text-align: left;
      align-items: center;
    }

    .impact-stat {
      align-items: flex-start;
    }

    .stat-text {
      text-align: left;
    }

    .impact-content {
      text-align: left;
    }
  }

   .solution-section {
    background: linear-gradient(135deg, #fbe9e7, #fff3e0);
    padding: 80px 20px;
  }

  .solution-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
  }

  .solution-text {
    flex: 1 1 500px;
  }

  .solution-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #b71c1c;
    margin-bottom: 20px;
  }

  .solution-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .call-now {
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .call-now:hover {
    background-color: #b71c1c;
  }

  .timer {
    font-size: 16px;
    color: #222;
    font-weight: 500;
  }

.timer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff3e0;
  border: 2px solid #d32f2f;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}

.timer-label {
  color: #d32f2f;
  font-size: 16px;
  font-weight: 600;
}

.timer-display {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  min-width: 100px;
  text-align: center;
  letter-spacing: 1px;
}


  .solution-visual {
    flex: 1 1 400px;
    text-align: center;
  }

  .solution-visual img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
  }

  @media (max-width: 768px) {
    .solution-container {
      flex-direction: column;
      text-align: center;
    }
     .solution-text {
    flex: 1 1 100px!important;
  }


    .cta-row {
      justify-content: center;
    }
  }
    .cta-call-section {
    background-color: #c62828;
    color: #fff;
    text-align: center;
    padding: 60px 20px 0;
  }

  .cta-container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .cta-call-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .cta-call-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }

  .call-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
  }

  .call-btn {
    padding: 14px 24px;
    border: 2px solid #fff;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .call-btn:hover {
    background: #fff;
    color: #c62828;
  }

  .call-btn.alt {
    border-color: #ffebee;
    background: rgba(255,255,255,0.1);
  }

  .or-text {
    color: #ffd8d8;
    font-weight: 500;
    font-size: 16px;
  }

  .cta-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin-top: -2px;
  }

  @media (max-width: 600px) {
    .call-buttons {
      flex-direction: column;
    }

    .or-text {
      display: none;
    }
  }

    .how-it-works {
    background-color: #f4f6f8;
    padding: 80px 20px;
    text-align: center;

  }

  .how-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .how-it-works h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #2e2e2e;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }

  .step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .step:hover {
    transform: translateY(-5px);
  }

  .step-icon {
    font-size: 36px;
    color: #c62828;
    margin-bottom: 15px;
  }

  .step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #212121;
  }

  .step p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }

    .testimonials {
    background: #fff;
    padding: 80px 20px;

    text-align: center;
  }

  .testimonials-container {
    max-width: 1000px;
    margin: auto;
  }

  .testimonials h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #c62828;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .testimonial-card {
    background: #fbe9e7;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }

  .testimonial-card span {
    font-weight: 600;
    color: #555;
  }

   .site-footer {
    background-color: #212121;
    color: #ccc;
    padding: 50px 20px 20px;
  }

  .footer-container {
    max-width: 1100px;
    margin: auto;
  }

  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .footer-brand h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 14px;
    color: #aaa;
    max-width: 300px;
  }

  .footer-links h4,
  .footer-contact h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links ul li {
    margin-bottom: 6px;
  }

  .footer-links a,
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    color: #fff;
  }

  .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #888;
  }

  .footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 6px;
  }

  .footer-bottom a:hover {
    color: #fff;
  }

  @media (max-width: 768px) {
    .footer-columns {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
      width: 100%;
    }

    .footer-brand p {
      max-width: 100%;
    }
  }

   .faq-section {
    background: #f9f9f9;
    padding: 80px 20px;
  }

  .faq-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
  }

  .faq-section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #c62828;
  }

  .faq-list {
    text-align: left;
  }

  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
  }

  .faq-question {
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    width: 100%;
    text-align: left;
    padding: 15px;
    cursor: pointer;
    position: relative;
  }

  .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
  }

  .faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 15px;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 10px 15px 15px;
  }

  .faq-answer p {
    font-size: 16px;
    color: #555;
    margin: 0;
  }

   .contact-section {
    background: #f4f4f4;
    padding: 80px 20px;
  }

  .contact-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .contact-info {
    flex: 1 1 40%;
  }

  .contact-info h2 {
    font-size: 28px;
    color: #c62828;
    margin-bottom: 15px;
  }

  .contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
  }

  .contact-info ul {
    list-style: none;
    padding: 0;
  }

  .contact-info li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
  }

  .contact-info a {
    color: #c62828;
    text-decoration: none;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  .contact-form {
    flex: 1 1 55%;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
  }

  .contact-form label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
  }

  .contact-form input,
  .contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
  }

  .contact-form button {
    background-color: #c62828;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #a61b1b;
  }

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      padding: 30px 20px;
    }

    .contact-form,
    .contact-info {
      flex: 1 1 100%;
    }
  }

  .hero-banner {
    background: url('../images/logo/about-banner.webp') no-repeat center center/cover;
    padding: 120px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .hero-banner::before {
    content: "";
    background: rgba(0, 0, 0, 0.5); /* semi-dark overlay */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero-content {
    max-width: 800px;
    margin: auto;
  }

  .hero-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .hero-content h2 {
      font-size: 28px;
    }

    .hero-content p {
      font-size: 16px;
    }

    .hero-banner {
      padding: 80px 15px;
    }
  }

    .goals-section {
    background-color: #f2f7fc;
    padding: 80px 20px;
  }

  .goals-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .goals-title {
    font-size: 32px;
    color: #c62828;
    margin-bottom: 50px;
    font-weight: 700;
  }

  .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    gap: 30px;
  }

  .goal-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .goal-card:hover {
    transform: translateY(-6px);
  }

  .goal-card i {
    font-size: 28px;
    color: #c62828;
    margin-bottom: 15px;
  }

  .goal-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
  }

  @media (max-width: 600px) {
    .goals-title {
      font-size: 26px;
    }

    .goal-card p {
      font-size: 15px;
    }
  }
    .why-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
  }

  .why-container {
    max-width: 850px;
    margin: auto;
  }

  .why-container h2 {
    font-size: 32px;
    color: #c62828;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .underline {
    width: 40px;
    height: 3px;
    background-color: #c62828;
    margin: 0 auto 30px;
    border-radius: 4px;
  }

  .why-container p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .why-container h2 {
      font-size: 26px;
    }

    .why-container p {
      font-size: 16px;
    }
  }

   .consumption-section {
    background-color: #c62828;
    padding: 0;
    margin: 0;
  }

  .consumption-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }

  .consumption-image,
  .consumption-text {
    flex: 1 1 50%;
    min-height: 350px;
  }

  .consumption-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .consumption-text {
    padding: 60px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #c62828;
    text-align: center;
  }

  .consumption-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .consumption-text p {
    font-size: 18px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .consumption-container {
      flex-direction: column;
    }

    .consumption-text,
    .consumption-image {
      flex: 1 1 100%;
    }

    .consumption-text {
      padding: 40px 20px;
    }
  }

  .solution-section {
  background: #f3f8fb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.solution-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #c62828;
}

.solution-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #333;
}

.solution-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  width: 300px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card i {
  font-size: 32px;
  color: #c62828;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.card p {
  font-size: 16px;
  color: #555;
}

@media (max-width: 768px) {
  .solution-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
.cta-section {
  background: linear-gradient(135deg, #b71c1c, #d32f2f);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #b71c1c;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background-color: #fbe9e7;
  color: #c62828;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }
}

.lead-form-section {
  background: linear-gradient(to right, #ffe5e5, #fff);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.form-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.form-text {
  flex: 1;
  min-width: 280px;
  color: #333;
}

.form-text h2 {
  font-size: 32px;
  color: #c62828;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-text p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.trust-icons p {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-box {
  flex: 1;
  min-width: 320px;
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease;
}

.form-box h3 {
  font-size: 24px;
  color: #b71c1c;
  margin-bottom: 20px;
  text-align: center;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #d32f2f;
  outline: none;
  box-shadow: 0 0 5px rgba(211, 47, 47, 0.2);
}

.form-box button {
  width: 100%;
  padding: 14px;
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.form-box button:hover {
  background-color: #a31818;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-content {
    flex-direction: column;
  }

  .form-text, .form-box {
    width: 100%;
  }

  .form-box {
    padding: 25px 20px;
  }
}
.refund-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.refund-container {
  max-width: 900px;
  margin: 0 auto;
}

.refund-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c62828;
}

.refund-container p,
.refund-container li {
  line-height: 1.7;
  margin-bottom: 15px;
}

.refund-container ul {
  padding-left: 20px;
  list-style-type: disc;
}

.refund-container a {
  color: #d62828;
  text-decoration: none;
}

.refund-container a:hover {
  text-decoration: underline;
}
