* {
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Satoshi", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #08a62d;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #111827;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  color: #4b5563;
}

 /* Buttons */
 .re-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #16a34a;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.re-btn-primary:hover {
  background-color: #138a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.re-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #16a34a;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: all 0.3 ease;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.re-btn-secondary:hover {
  border-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* //How it works redesigned */
 
.re-steps {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.re-step-card {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.re-step-number {
  position: absolute;
  top: -20px;
  left: 40px;
  background-color: #16a34a;
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.re-step-content {
  margin-top: 20px;
}

.re-step-icon {
  display: flex;
  position: absolute;
  bottom: -20px;
  right: 40px;
  background-color: white;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.re-step-icon svg {
  color: #16a34a;
}

.re-step-connector {
  flex: 0 0 60px;
  height: 2px;
  background-color: #d1d5db;
  margin-top: 100px;
  position: relative;
}

.re-step-connector::before,
.re-step-connector::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  top: 50%;
  transform: translateY(-50%);
}

.re-step-connector::before {
  left: 0;
}

.re-step-connector::after {
  right: 0;
}

/* //Features redesigned */

.re-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.re-feature-card {
  background-color: #f9fafb;
  padding: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.re-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #16a34a;
  transition: all 0.3s ease;
}

.re-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.re-feature-card:hover::before {
  height: 100%;
}

.re-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.re-feature-icon svg {
  color: #16a34a;
  width: 30px;
  height: 30px;
}

.re-feature-card h3 {
  margin-bottom: 16px;
}

.re-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  color: #08a62d;
}

.re-feature-link svg {
  transition: all 0.3s ease;
}

.re-feature-link:hover svg {
  transform: translateX(4px);
}

.re-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
}

.re-feature-link svg {
  transition: all 0.3s ease;
}

.re-feature-link:hover svg {
  transform: translateX(4px);
}

/* //Everything section redesigned */
/* Section Tag */
.re-section-tag {
  display: inline-block;
  background-color: rgb(13, 176, 49, 0.1);
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Section Header */
.re-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.re-section-title {
  margin-bottom: 16px;
}

.re-section-description {
  font-size: 18px;
  color: #4b5563;
}

/* Overview Section */
.re-overview {
  padding: 100px 0;
}

.re-overview .re-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.re-overview-content {
  flex: 1;
}

.re-overview-list {
  margin: 32px 0;
}

.re-overview-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #374151;
  font-weight: 500;
}

.re-overview-list li svg {
  color: #16a34a;
  flex-shrink: 0;
}

.re-overview-cta {
  display: flex;
  gap: 16px;
}

.re-overview-image {
  flex: 1;
  position: relative;
}

.re-rounded-image {
  border-radius: 12px;
}

.re-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.re-image-badge svg {
  color: #16a34a;
}

.re-image-badge span {
  font-weight: 600;
  color: #1f2937;
}

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

/* --About us redesigned */
 /* Who We Are Section */
.re-who-we-are {
  padding: 100px 0;
}

.re-who-we-are .re-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.re-who-we-are-content {
  flex: 1;
}

.re-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.re-stat-item {
  display: flex;
  flex-direction: column;
}

.re-stat-item .re-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 8px;
}

.re-stat-item .re-stat-label {
  font-size: 16px;
  color: #4b5563;
}

.re-who-we-are-image {
  flex: 1;
  position: relative;
}

/* Our Mission Section */
.re-our-mission {
  padding: 100px 0;
  background-color: #f9fafb;
}

.re-our-mission .re-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.re-mission-image {
  flex: 1;
}

.re-mission-content {
  flex: 1;
}

.re-mission-points {
  margin-top: 40px;
}

.re-mission-point {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.re-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgb(13, 176, 49, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.re-point-icon svg {
  color: #16a34a;
}

.re-point-text h3 {
  margin-bottom: 8px;
}

.re-point-text p {
  margin-bottom: 0;
}

/* Our Values Section */
.re-our-values {
  padding: 100px 0;
}

.re-values-grid {
  display: flex;
  gap: 30px;
}

.re-value-card {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.re-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.re-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgb(13, 176, 49, 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
}

.re-value-icon svg {
  color: #16a34a;
  width: 40px;
  height: 40px;
}

/* --Form Redesigned-- */
.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  margin-bottom: 8px;
}

.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #374151;
}

.input-wrapper {
  position: relative;
}

.input-wrapper svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.textarea-wrapper svg {
  top: 20px;
  transform: none;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 12px 12px 12px 48px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3 ease;
}

.input-wrapper textarea {
  resize: vertical;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.form-submit {
  margin-top: 32px;
}


/* //Steps */

.steps-container-home a {
  text-decoration: none;
  background-color: #fafafa;
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pointer {
  cursor: pointer;
}

.container {
  padding: 84px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.au-container {
  padding: 84px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  background-color: #fafafa;
}

.container-2 {
  padding: 84px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container-2-au {
  padding: 84px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  text-align: left;
}

.subtitle {
  font-size: 18px;
  color: #16a34a;
  text-align: left;
  font-weight: 700;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.steps-container-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.step-card-img-wrapper {
  display: flex;
  justify-content: space-between;
}
.step-card {
  background-color: #fafafa;
  padding: 24px;
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card-au {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-number {
  color: #16a34a;
  font-weight: 500;
  font-size: 16px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
}

.step-description {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.cta-container {
  display: flex;
  justify-content: center;
}

.key-cta-container {
  display: flex;
  justify-content: flex-start;
}

.key-button {
  color: #08a62d;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 20px;
}

.key-button-2 {
  color: #08a62d;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  background-color: #16a34a;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #138a3f;
}

/* Next Level Section */
.next-level {
  background-color: #fafafa;
}

.next-level .main-heading {
  max-width: 800px;
}

.next-level .subtitle {
  color: #16a34a;
  max-width: 800px;
}

.cta-right {
  display: flex;
  justify-content: flex-end;
}

.cta-button-dark {
  display: inline-block;
  background-color: #1a1a2e;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button-dark:hover {
  background-color: #121220;
}

.cta-button-green {
  display: inline-block;
  background-color: #16a34a;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-button-green:hover {
  background-color: #138a3f;
}

/* Responsive styles */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }

  .step-card {
    margin-bottom: 20px;
  }

  .main-heading {
    font-size: 30px;
  }

  .step-title {
    font-size: 20px;
  }

  .cta-right {
    justify-content: center;
  }
}

.contact-us-container {
  display: flex;
  width: 100%;
  gap: 48px;
}

.contact-left-side,
.contact-right-side {
  width: 50%;
  padding: 120px;
}

.contact-left-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background-color: #fafafa;
}

.contact-right-side {
  background-color: #fff;
}

/* Contact Logo */
.contact-logo img {
  max-width: 100%;
}

/* Get in Touch */
.heading h1 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
}

/* Intro text */
.intro-text p {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Contact Info */
.contact-info p {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #0db031;
  padding: 5px;
  margin: 0;
}

.contact-info a {
  color: #0db031;
  text-decoration: none;
}

.contact-form-info p {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-input {
  padding: 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: rgb(0, 0, 0, 0.05);
}

.contact-form-input:focus-within{
    outline: none;
}

.contact-form-button {
  background-color: #0db031;
  color: white;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  width: fit-content;
  margin-top: 40px;
}

.contact-submit-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.contact-right-header {
  display: flex;
  margin-bottom: 48px;
}

.contact-right-header h2 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}

.contact-form-button:hover {
  background-color: #08a62d;
}

.about-hero-container {
  display: flex;
  padding: 120px;
  gap: 64px;
  align-items: center;
}

.about-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-hero-left p {
  color: rgb(0, 0, 0, 0.5);
  font-weight: 500;
}

.about-hero-left h2 {
  font-weight: 700;
  font-size: 32px;
}

/* Showcase Section */

.showcase-container {
  display: flex;
  flex-direction: column;
  padding: 120px;
  gap: 80px;
  justify-content: center;
  background-color: #fafafa;
}

.showcase-top {
  display: flex;
  gap: 80px;
}

.showcase-bottom {
  display: flex;
  justify-content: center;
  background: #111827;
  border-radius: 24px;
}

.showcase-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 24px;
}

.showcase-right {
  display: flex;
  width: 50%;
  gap: 24px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
}

.showcase-card img {
  margin-bottom: 20px;
  width: 40px;
}

.showcase-card p {
  color: rgb(0, 0, 0, 0.5);
  font-weight: 500;
}

.showcase-card-title {
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.showcase-left h2 {
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  width: 60%;
}

.showcase-left p {
  color: rgb(0, 0, 0, 0.5);
  font-weight: 500;
}

.dark-button {
  background-color: #111827;
  font-weight: 700;
  padding: 12px 18px;
  width: fit-content;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s all ease;
}

.dark-button:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gray-button {
  background-color: #e8e8ea;
  font-weight: 700;
  padding: 12px 18px;
  color: #111827;
  width: fit-content;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s all ease;
}

.gray-button:hover {
  background-color: #dbdbdb;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
  align-items: center;
  padding: 48px 0;
}

.hero-button-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.hero-header {
  font-size: 48px;
  color: #111827;
  font-weight: 700;
  text-align: center;
}

.hero-subheader {
  color: rgb(0, 0, 0, 0.5);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: flex;
  background-color: rgb(13, 176, 49, 0.1);
  color: #0db031;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 18px;
}

.hero-image-container img {
  width: 950px;
}

.hero-image-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 24px 0 64px 0;
}

@media (max-width: 1280px) {
  .about-hero-right img {
    width: 460px;
  }
}

@media (max-width: 860px) {
  .about-hero-right img {
    width: 300px !important;
  }
}

@media (max-width: 1090px) {
  .navbar-container {
    padding: 15px 60px;
  }
  .showcase-container {
    padding: 120px 60px;
  }
  .showcase-bottom img {
    width: 800px;
  }
  .hero-image-container img {
    width: 600px;
  }
  .container {
    padding: 84px 60px;
  }
  .au-container {
    padding: 84px 60px;
  }
  .container-2-au {
    padding: 84px 60px;
  }
  .footer-top {
    padding: 32px 60px;
  }
  .footer-middle,
  .footer-bottom {
    padding: 24px 60px;
  }
  .hero-header {
    font-size: 38px;
  }
  .hero-subheader {
    font-size: 20px;
  }
  .showcase-left h2,
  .main-heading {
    font-size: 24px;
  }
  .subtitle {
    font-size: 16px;
  }
  .step-title {
    font-size: 20px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo img {
    height: 20px;
  }
  .login-btn {
    font-size: 14px;
  }
  .register-btn {
    font-size: 14px;
  }
  .about-hero-right img {
    width: 400px;
  }
  .about-hero-left {
    width: 50%;
  }
  .about-hero-container {
    padding: 120px 60px;
  }
  .contact-left-side,
  .contact-right-side {
    padding: 60px;
  }
  .container-2 {
    padding: 84px 60px;
  }
  .container {
    padding: 84px 60px;
  }
}

@media (max-width: 800px) {
  .navbar-container {
    padding: 15px 30px;
  }
  .showcase-container {
    padding: 120px 30px;
  }
  .showcase-bottom img {
    width: 500px;
  }
  .hero-image-container img {
    width: 460px;
  }
  .container {
    padding: 84px 30px;
  }
  .au-container {
    padding: 84px 30px;
  }
  .container-2-au {
    padding: 84px 30px;
  }
  .footer-top {
    padding: 32px 30px;
  }
  .footer-middle,
  .footer-bottom {
    padding: 24px 30px;
  }
  .hero-container {
    width: 90%;
  }
  .showcase-top {
    gap: 24px;
  }
  .showcase-right {
    flex-direction: column;
  }
  .steps-container-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-2-au {
    flex-direction: column;
    gap: 24px;
  }
  .main-heading-center {
    text-align: center;
  }
  .text-center {
    text-align: center;
  }
  .about-hero-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-hero-left {
    width: 100%;
  }
  .about-hero-right img {
    width: 400px !important;
  }
  .about-hero-right {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .about-hero-container {
    padding: 60px 30px;
  }
  .contact-left-side, .contact-right-side {
    padding: 30px !important;
}
.contact-us-container{
    gap: 16px;
}
}

@media (max-width: 640px) {
  .hero-image-container img {
    width: 360px;
  }
  .showcase-top {
    flex-direction: column;
  }
  .showcase-left {
    width: 100%;
  }
  .showcase-left h2 {
    width: 100%;
  }
  .showcase-right {
    width: 100%;
  }
  .showcase-bottom img {
    width: 300px;
  }
  .showcase-bottom {
    padding: 20px 10px 0 10px;
  }
  .contact-us-container{
    flex-direction: column;
  }
  .contact-left-side, .contact-right-side {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .showcase-bottom {
    background: transparent;
  }
  .hero-image-container img {
    width: 240px;
  }
  .steps-container-home {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-hero-right img {
    width: 320px !important;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .re-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .re-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .re-hero .re-container,
  .re-overview .re-container,
  .re-cta .re-container,
  .re-who-we-are .re-container,
  .re-our-mission .re-container,
  .re-contact-grid {
    flex-direction: column;
  }

  .re-hero-content,
  .re-overview-content,
  .re-cta-content,
  .re-who-we-are-content,
  .re-mission-content,
  .re-contact-content {
    max-width: 100%;
  }

  .re-highlights-grid,
  .re-values-grid,
  .re-steps {
    flex-direction: column;
  }

  .re-step-connector {
    display: none;
  }

  .re-footer-top {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .re-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    justify-content: center;
    z-index: 101;
  }

  .re-nav.active {
    display: flex;
  }

  .re-nav-list {
    flex-direction: column;
    align-items: center;
  }

  .re-nav-cta {
    margin-top: 40px;
  }

  .re-mobile-menu-toggle {
    display: flex;
    z-index: 102;
  }

  .re-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .re-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .re-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .re-features-grid {
    grid-template-columns: 1fr;
  }

  .re-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .re-stat {
    flex: 0 0 calc(50% - 10px);
  }

  .re-footer-links {
    flex-direction: column;
    gap: 40px;
  }

  .re-footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .re-hero-title {
    font-size: 40px;
  }

  .re-hero-cta,
  .re-overview-cta,
  .re-cta-buttons {
    flex-direction: column;
  }

  .re-stats-grid {
    grid-template-columns: 1fr;
  }

  .re-team-grid {
    grid-template-columns: 1fr;
  }
}


.tnc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
}

.tnc-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tnc-title {
  margin: 0;
  font-size: 28px;
  color: #222;
}

.tnc-point {
  font-size: 16px;
  margin-bottom: 10px;
  color: rgb(0, 0, 0, 0.7);
}

.tnc-content {
  line-height: 1.6;
}

.tnc-section {
  margin-bottom: 20px;
}

.tnc-subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.tnc-text {
  font-size: 16px;
  color: #555;
}

.tnc-footer {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
}

.tnc-footer-text {
  font-size: 14px;
  color: #888;
}