html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

progress {
  vertical-align: baseline;
  display: inline-block;
}

a:active,
a:hover {
  outline: 0;
}

strong {
  font-weight: bold;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

h2 {
  margin-top: 10px;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

ul,
ol,
li {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

a {
  color: #004d40;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  outline: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
  border: 0;
  height: auto;
}

.text-uppercase {
  text-transform: uppercase;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  box-sizing: border-box;
}

.main {
  flex: 1 0 auto;
}

a {
  text-transform: none;
  margin: 0;
  padding: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

footer,
header,
menu,
nav,
section {
  display: block;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
  text-align: center;
}

h3 {
  margin: 10px 0px;
  padding: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

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

.index-container {
  max-width: 1680px;
  padding: 0px 10px;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #2e6d57;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a3c34;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

h1 {
  font-size: 2rem;
  color: #45ec74;
  font-weight: 700;
}

h2 {
  font-size: 1rem;
  color: #45ec74;
}

h3 {
  font-size: 1.2rem;
  color: #45ec74;
}

@media (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.4rem;
  }
}

html,
body {
  height: 100%;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #3c2a1e;
  background: #f5f5dc;
  -webkit-font-smoothing: antialiased;
}
/* Container for limiting width */
.index-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles - Unique to index with Indian-inspired saffron and green accents */
.index-header {
  background-color: #ff9933; /* Saffron from Indian flag */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.index-header .index-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.index-logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #038697; /* Green from Indian flag */
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-logo a:hover {
  color: #fff;
}

.index-nav ul {
  display: flex;
  list-style: none;
}

.index-nav li {
  margin-left: 30px;
}

.index-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.index-nav a:hover {
  color: #038697;
}

.index-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.index-burger span {
  width: 25px;
  height: 3px;
  background-color: #038697;
  transition: all 0.3s ease;
}

.index-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.index-burger.active span:nth-child(2) {
  opacity: 0;
}

.index-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .index-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff9933;
    padding: 20px;
  }

  .index-nav ul.active {
    display: flex;
  }

  .index-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .index-burger {
    display: flex;
  }
}

/* Main content - Unique sections with varied layouts and Indian-themed colors */
.index-main {
  padding: 10px;
}

.index-hero {
  background: linear-gradient(135deg, #bd7100, #20b2aa);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.index-hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.index-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.index-hero a {
  background-color: #fff;
  color: #bd7100;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.index-hero a:hover {
  background-color: #20b2aa;
  color: #fff;
  transform: scale(1.05);
}

.index-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  background-color: #fdf5e6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.index-intro-image {
  flex: 1;
  width: 100%;
  background: url("img/app-bg1.jpg") no-repeat center/cover;
  height: 300px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.index-intro-image:hover {
  box-shadow: 0 0 20px rgba(32, 178, 170, 0.5);
}

.index-intro-text {
  flex: 1;
}

.index-intro h2 {
  font-size: 2rem;
  color: #bd7100;
  margin-bottom: 20px;
}

.index-featured {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fdf5e6, #fff);
}

.index-featured h2 {
  text-align: center;
  font-size: 2rem;
  color: #20b2aa;
  margin-bottom: 40px;
}

.index-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.index-featured-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.index-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #bd7100, #20b2aa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.index-featured-card:hover::before {
  opacity: 1;
}

.index-featured-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.index-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.index-featured-card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #bd7100;
}

.index-featured-card p {
  padding: 0 15px 15px;
}

.index-why {
  padding: 60px 0;
  background-color: #20b2aa;
  color: #fff;
  text-align: center;
}

.index-why h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.index-why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.index-why-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
  position: relative;
  overflow: hidden;
}

.index-why-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #bd7100;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.index-why-item:hover::after {
  transform: scaleX(1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.index-why-item:nth-child(1) {
  animation-delay: 0.2s;
}
.index-why-item:nth-child(2) {
  animation-delay: 0.4s;
}
.index-why-item:nth-child(3) {
  animation-delay: 0.6s;
}

.index-why-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.index-testimonials {
  padding: 60px 0;
  background: linear-gradient(45deg, #bd7100, #fdf5e6);
}

.index-testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #20b2aa;
  margin-bottom: 40px;
}

.index-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.index-testimonial-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background-color 0.3s ease;
}

.index-testimonial-card:hover {
  background-color: #fdf5e6;
}

.index-testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.index-testimonial-card h4 {
  font-size: 1.2rem;
  color: #bd7100;
}

.index-cta {
  background: linear-gradient(45deg, #ff6347, #6a5acd);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.index-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-100px);
  }
}

.index-cta-content {
  position: relative;
  z-index: 1;
}

.index-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.index-cta a {
  background-color: #6a5acd;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.index-cta a:hover {
  background-color: #ff6347;
  box-shadow: 0 0 20px rgba(255, 99, 71, 0.6);
  transform: translateY(-3px);
}

.index-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 178, 170, 0.7);
}

.index-cta-content {
  position: relative;
  z-index: 1;
}

.index-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.index-footer {
  background-color: #db9600;
  color: #fff;
  padding: 40px 0 20px;
}

.index-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.index-footer-nav ul {
  list-style: none;
}

.index-footer-nav li {
  margin-bottom: 10px;
}

.index-footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.index-footer-nav a:hover {
  color: #20b2aa;
}

.index-footer-contacts ul {
  list-style: none;
}

.index-footer-contacts li {
  margin-bottom: 10px;
}

.index-footer-contacts a {
  color: #fff;
  text-decoration: none;
}

.index-footer-policies ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.index-footer-policies a {
  color: #fff;
  text-decoration: none;
}

.index-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .index-hero h1 {
    font-size: 2rem;
  }
  .index-intro {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .index-hero {
    padding: 60px 0;
  }
  .index-featured-grid {
    grid-template-columns: 1fr;
  }
  .index-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

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

.service-main {
  padding: 10px;
}

.service-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.service-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.service-hero a {
  background-color: #138808;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-hero a:hover {
  background-color: #ff9933;
}

.service-featured {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.service-featured h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 40px;
}

.service-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-featured-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-featured-card h3 {
  padding: 15px;
  font-size: 1rem;
  color: #138808;
}

.service-featured-card p {
  padding: 0 15px 15px;
}

.service-impact {
  padding: 60px 0;
  background-color: #138808;
  color: #fff;
  text-align: center;
}

.service-impact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-impact-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.service-impact-counter {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.service-impact-counter:nth-child(1) {
  animation-delay: 0.2s;
}
.service-impact-counter:nth-child(2) {
  animation-delay: 0.4s;
}
.service-impact-counter:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-impact-counter h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.service-spotlight {
  padding: 60px 0;
  background: linear-gradient(45deg, #ff9933, #fff);
}

.service-spotlight-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-spotlight-image {
  flex: 1;
  width: 100%;
  background: url("img/app-bg2.jpg") no-repeat center/cover;
  height: 400px;
  border-radius: 10px;
  @media (max-width: 1024px) {
    flex: auto;
  }
}

.service-spotlight-text {
  flex: 1;
}

.service-spotlight h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 20px;
}

.service-process {
  padding: 60px 0;
  background-color: #fff;
}

.service-process h2 {
  text-align: center;
  font-size: 2rem;
  color: #138808;
  margin-bottom: 40px;
}

.service-process-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.service-process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ff9933;
  transform: translateX(-50%);
}

.service-process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: slideIn 0.8s ease forwards;
}

.service-process-step:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.service-process-step:nth-child(even) {
  text-align: left;
}

.service-process-step:nth-child(1) {
  animation-delay: 0.2s;
}
.service-process-step:nth-child(2) {
  animation-delay: 0.4s;
}
.service-process-step:nth-child(3) {
  animation-delay: 0.6s;
}
.service-process-step:nth-child(4) {
  animation-delay: 0.8s;
}
.service-process-step:nth-child(5) {
  animation-delay: 1s;
}

@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.service-process-step h3 {
  font-size: 1rem;
  color: #ff9933;
  margin-bottom: 10px;
}

.service-seasonal {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff9933, #138808);
  color: #fff;
  text-align: center;
}

.service-seasonal h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-seasonal a {
  background-color: #fff;
  color: #138808;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-seasonal a:hover {
  background-color: #ff9933;
  color: #fff;
}

.service-testimonials {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.service-testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #138808;
  margin-bottom: 40px;
}

.service-testimonials-carousel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}

.service-testimonial-card {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
}

.service-testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.service-testimonial-card h4 {
  font-size: 1.2rem;
  color: #ff9933;
}

.service-visual-story {
  padding: 60px 0;
  background: linear-gradient(to right, #fff, #f9f9f9);
}

.service-visual-story-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.service-visual-story-image {
  flex: 2;
  width: 100%;
  background: url("img/app-bg3.jpg") no-repeat center/cover;
  height: 300px;
  border-radius: 10px;
}

.service-visual-story-text {
  flex: 1;
}

.service-visual-story h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 20px;
}

.service-why {
  padding: 60px 0;
  background-color: #138808;
  color: #fff;
  text-align: center;
}

.service-why h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-why-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.service-why-item:nth-child(1) {
  animation-delay: 0.2s;
}
.service-why-item:nth-child(2) {
  animation-delay: 0.4s;
}
.service-why-item:nth-child(3) {
  animation-delay: 0.6s;
}

.service-why-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-cta {
  background: linear-gradient(45deg, #ff6347, #6a5acd);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-100px);
  }
}

.service-cta-content {
  position: relative;
  z-index: 1;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-cta a {
  background-color: #6a5acd;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.service-cta a:hover {
  background-color: #ff6347;
  box-shadow: 0 0 20px rgba(255, 99, 71, 0.6);
  transform: translateY(-3px);
}

.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 153, 51, 0.7);
}

@media (max-width: 1024px) {
  .service-hero h1 {
    font-size: 2rem;
  }
  .service-spotlight-content {
    flex-direction: column;
  }
  .service-visual-story-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .service-hero {
    height: 70vh;
  }
  .service-featured-grid {
    grid-template-columns: 1fr;
  }
  .service-impact-counters {
    grid-template-columns: 1fr;
  }
  .service-why-list {
    grid-template-columns: 1fr;
  }
  .service-process-timeline::before {
    left: 20px;
  }
  .service-process-step {
    flex-direction: column !important;
    text-align: center !important;
  }
}

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

.about-header {
  background-color: #ff9933;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-header .about-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-logo a {
  font-size: 1rem;
  font-weight: bold;
  color: #138808;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-logo a:hover {
  color: #fff;
}

.about-nav ul {
  display: flex;
  list-style: none;
}

.about-nav li {
  margin-left: 30px;
}

.about-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.about-nav a:hover {
  color: #138808;
}

.about-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.about-burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.about-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.about-burger.active span:nth-child(2) {
  opacity: 0;
}

.about-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .about-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff9933;
    padding: 20px;
  }

  .about-nav ul.active {
    display: flex;
  }

  .about-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .about-burger {
    display: flex;
  }
}

.about-main {
  padding: 10px;
}

.about-intro {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-intro h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
}

.about-story {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.about-story h2 {
  text-align: center;
  font-size: 2rem;
  color: #138808;
  margin-bottom: 50px;
}

.about-story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ff9933;
  transform: translateX(-50%);
}

.about-story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  width: 50%;
}

.about-story-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 40px;
}

.about-story-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
  @media (max-width: 768px) {
    left: auto;
  }
}

.about-story-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #138808;
  border-radius: 50%;
  z-index: 1;
}

.about-story-item:nth-child(odd)::before {
  right: 10px;
}

.about-story-item:nth-child(even)::before {
  left: 10px;
}

.about-story-item h3 {
  font-size: 1rem;
  color: #ff9933;
  margin-bottom: 10px;
}

.about-story-item p {
  color: #666;
}

@media (max-width: 768px) {
  .about-story-timeline::before {
    left: 20px;
  }
  .about-story-item {
    width: 100%;
    left: 0;
    padding-left: 40px;
    padding-right: 20px;
    text-align: left;
  }
  .about-story-item:nth-child(even) {
    padding-left: 40px;
  }
  .about-story-item::before {
    left: 10px;
  }
}

.about-founder {
  padding: 80px 0;
  background-color: #138808;
  color: #fff;
  text-align: center;
}

.about-founder-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-founder-image {
  flex: 1;
  width: 100%;
  height: 400px;
  background: url("img/app-bg4.jpg") no-repeat center/cover;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-founder-text {
  flex: 1;
}

.about-founder-text blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}

.about-founder-text cite {
  font-size: 1.2rem;
  color: #ff9933;
}

.about-commitment {
  padding: 80px 0;
  background: linear-gradient(to right, #fff, #f0f8f0);
}

.about-commitment h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 50px;
}

.about-commitment-list {
  max-width: 800px;
  margin: 0 auto;
}

.about-commitment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  @media (max-width: 550px) {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.about-commitment-item:hover {
  transform: translateY(-5px);
}

.about-commitment-item::before {
  content: "🌟";
  font-size: 2rem;
}

.about-commitment-item h3 {
  font-size: 1rem;
  color: #138808;
}

.about-impact {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.about-impact h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 40px;
}

.about-impact-map {
  width: 100%;
  height: 400px;
  background: url("img/app-bg5.jpg") no-repeat center/cover;
  border-radius: 10px;
  position: relative;
  margin-bottom: 10px;
}

.about-impact-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 136, 8, 0.3);
  border-radius: 10px;
}

.about-team {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
}

.about-team h2 {
  text-align: center;
  font-size: 2rem;
  color: #138808;
  margin-bottom: 50px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.about-team-card {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-team-card:hover {
  transform: scale(1.05);
}

.about-team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.about-team-card h3 {
  font-size: 1.3rem;
  color: #ff9933;
  margin-bottom: 5px;
}

.about-team-card p {
  color: #666;
  font-size: 1rem;
}

.about-why {
  padding: 80px 0;
  background-color: #f0f8f0;
  text-align: center;
}

.about-why h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 50px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.about-why-item {
  padding: 20px;
}

.about-why-item h3 {
  font-size: 1rem;
  color: #138808;
  margin-bottom: 15px;
}

.about-why-progress {
  background-color: #ddd;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.about-why-progress-bar {
  height: 100%;
  background-color: #ff9933;
  width: 0;
  animation: progress 2s ease forwards;
}

.about-why-item:nth-child(1) .about-why-progress-bar {
  width: 90%;
}
.about-why-item:nth-child(2) .about-why-progress-bar {
  width: 85%;
}
.about-why-item:nth-child(3) .about-why-progress-bar {
  width: 80%;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: inherit;
  }
}

.about-partners {
  padding: 80px 0;
  background-color: #fff;
}

.about-partners h2 {
  text-align: center;
  font-size: 2rem;
  color: #138808;
  margin-bottom: 50px;
}

.about-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.about-partners-logo {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-partners-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-partners-logo img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}

.about-gallery {
  padding: 80px 0;
  background: linear-gradient(to right, #f9f9f9, #fff);
}

.about-gallery h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 50px;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.about-gallery-image {
  background: url("img/app-bg6.jpg") no-repeat center/cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-gallery-image:hover {
  transform: scale(1.05);
}

.about-cta {
  background: linear-gradient(45deg, #ff6347, #6a5acd);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% {
    transform: rotate(30deg) translateX(0);
  }
  100% {
    transform: rotate(30deg) translateX(-100px);
  }
}

.about-cta-content {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-cta a {
  background-color: #6a5acd;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}

.about-cta a:hover {
  background-color: #ff6347;
  box-shadow: 0 0 20px rgba(255, 99, 71, 0.6);
  transform: translateY(-3px);
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 153, 51, 0.7);
}

.about-footer {
  background-color: #000080;
  color: #fff;
  padding: 40px 0 20px;
}

.about-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.about-footer-nav ul,
.about-footer-contacts ul,
.about-footer-policies ul {
  list-style: none;
}

.about-footer-nav li,
.about-footer-contacts li {
  margin-bottom: 10px;
}

.about-footer-nav a,
.about-footer-contacts a,
.about-footer-policies a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-footer-nav a:hover,
.about-footer-contacts a:hover,
.about-footer-policies a:hover {
  color: #ff9933;
}

.about-footer-policies ul {
  display: flex;
  gap: 20px;
}

.about-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .about-founder-content {
    flex-direction: column;
  }
  .about-founder-image {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    height: 300px;
    flex: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 2rem;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 480px) {
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-cta h2 {
    font-size: 2rem;
  }
}

/* Container for limiting width */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles - Unique to contact with Indian-inspired saffron and green accents */
.contact-header {
  background-color: #ff9933; /* Saffron from Indian flag */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-header .contact-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-logo a {
  font-size: 1rem;
  font-weight: bold;
  color: #138808; /* Green from Indian flag */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-logo a:hover {
  color: #fff;
}

.contact-nav ul {
  display: flex;
  list-style: none;
}

.contact-nav li {
  margin-left: 30px;
}

.contact-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-nav a:hover {
  color: #138808;
}

.contact-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.contact-burger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.contact-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.contact-burger.active span:nth-child(2) {
  opacity: 0;
}

.contact-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .contact-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ff9933;
    padding: 20px;
  }

  .contact-nav ul.active {
    display: flex;
  }

  .contact-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .contact-burger {
    display: flex;
  }
}

/* Main content - Unique sections with varied layouts and Indian-themed colors */
.contact-main {
  padding: 10px;
}

/* Hero Image - Large office photo with h1 */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url("img/app-bg7.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 136, 8, 0.5); /* Green overlay */
}

.contact-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
  color: #ffffff;
}

/* Map Section - Interactive Google Maps iframe */
.contact-map {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.contact-map h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 30px;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Quick Facts - Block with stats */
.contact-facts {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f9f9f9, #fff);
  text-align: center;
}

.contact-facts h2 {
  font-size: 2rem;
  color: #138808;
  margin-bottom: 40px;
}

.contact-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.contact-facts-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-facts-item h3 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 10px;
}

.contact-facts-item p {
  font-size: 1.1rem;
  color: #666;
}

/* Contact Details - Block with location, phone, email */
.contact-details {
  padding: 60px 0;
  background-color: #138808;
  color: #fff;
  text-align: center;
}

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.contact-details-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details-list li {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.contact-details-list a {
  color: #ff9933;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-list a:hover {
  color: #fff;
}

/* Spotlight Quote - Large quote */
.contact-quote {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff9933, #138808);
  color: #fff;
  text-align: center;
}

.contact-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* FAQ Accordion - Using details/summary */
.contact-faq {
  padding: 60px 0;
  background-color: #fff;
}

.contact-faq h2 {
  text-align: center;
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 40px;
}

.contact-faq details {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-faq summary {
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  color: #138808;
  transition: background-color 0.3s ease;
}

.contact-faq summary:hover {
  background-color: #f0f8f0;
}

.contact-faq details[open] summary {
  background-color: #ff9933;
  color: #fff;
}

.contact-faq p {
  padding: 15px;
  color: #666;
}

/* Closing Banner - Visual block with motivation */
.contact-closing {
  background: url("img/app-bg8.jpg") no-repeat center/cover fixed;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.contact-closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 153, 51, 0.7); /* Saffron overlay */
}

.contact-closing-content {
  position: relative;
  z-index: 1;
}

.contact-closing h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-closing form {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
  color: #333;
}

.contact-closing input,
.contact-closing textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-closing button {
  background-color: #138808;
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.contact-closing button:hover {
  background-color: #ff9933;
}

.contact-closing .privacy {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-closing .privacy input {
  width: auto;
  margin-right: 10px;
}

.contact-closing .privacy a {
  color: #138808;
  text-decoration: underline;
}

/* Footer - Multi-column layout with Indian blue accents */
.contact-footer {
  background-color: #000080; /* Navy blue for contrast */
  color: #fff;
  padding: 40px 0 20px;
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.contact-footer-nav ul {
  list-style: none;
}

.contact-footer-nav li {
  margin-bottom: 10px;
}

.contact-footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-footer-nav a:hover {
  color: #ff9933;
}

.contact-footer-contacts ul {
  list-style: none;
}

.contact-footer-contacts li {
  margin-bottom: 10px;
}

.contact-footer-contacts a {
  color: #fff;
  text-decoration: none;
}

.contact-footer-policies ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.contact-footer-policies a {
  color: #fff;
  text-decoration: none;
}

.contact-footer-copyright {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-facts-grid {
    grid-template-columns: 1fr;
  }
  .contact-quote blockquote {
    font-size: 2rem;
  }
}

.thanks-container {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
  font-size: 2rem;
  color: #138808;
  margin-bottom: 20px;
}

.thanks-container p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.thanks-container a {
  background-color: #ff9933;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.thanks-container a:hover {
  background-color: #138808;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.privacy-main {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.privacy-main h1 {
  text-align: center;
  font-size: 2.6rem;
  color: #1e3a8a;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.privacy-main h2 {
  font-size: 1.6rem;
  color: #dc2626;
  margin: 30px 0 15px;
  font-weight: 600;
}

.privacy-main p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.privacy-main a {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.privacy-main a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.privacy-section {
  background-color: #f1f5f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #1e3a8a);
  transition: width 0.3s ease;
}

.privacy-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.privacy-section:hover::before {
  width: 8px;
}

@media (max-width: 768px) {
  .privacy-main {
    padding: 20px;
  }

  .privacy-main h1 {
    font-size: 2rem;
  }

  .privacy-main h2 {
    font-size: 1.4rem;
  }

  .privacy-section {
    padding: 20px;
  }
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.terms-main {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.terms-main h1 {
  text-align: center;
  font-size: 2.6rem;
  color: #1e3a8a;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.terms-main h2 {
  font-size: 1.6rem;
  color: #dc2626;
  margin: 30px 0 15px;
  font-weight: 600;
}

.terms-main p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.terms-main a {
  color: #dc2626;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.terms-main a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.terms-section {
  background-color: #f1f5f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.terms-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #dc2626, #1e3a8a);
  transition: width 0.3s ease;
}

.terms-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.terms-section:hover::before {
  width: 8px;
}

@media (max-width: 768px) {
  .terms-main {
    padding: 20px;
  }

  .terms-main h1 {
    font-size: 2rem;
  }

  .terms-main h2 {
    font-size: 1.4rem;
  }

  .terms-section {
    padding: 20px;
  }
}
