:root {
  --primary: #99c22f;
  /* Vibrant purple */
  --primary-dark: #6a8621;
  --secondary: #ff6584;
  /* Pink accent */
  --accent: #42e2b8;
  /* Teal accent */
  --dark: #1a1a2e;
  --light: #f8f9ff;
  --white: #ffffff;
  --gray: #8c8b9f;
  --light-gray: #e6e6f0;
  --gradient: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: Poppins, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.3;
}

/* Preloader */

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 10px 2%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 5px;
}

.logo-container {
  background: white;
  padding: 5px;
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 200px;
  height: auto;
}

.nav-right {
  display: flex;
  align-items: end;
  flex-direction: column;
}

.inquires-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  margin-right: 15px;
  font-weight: 500;
}

.start-here {
  text-decoration: underline;
  color: var(--primary);
  font-weight: 600;
}

/* Desktop styles */

.cta-button {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(139, 176, 42, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 176, 42, 0.4);
}

@media (min-width: 768px) {
  .highlight-1 {
    left: 0 !important;
  }
  .highlight-2 {
    right: 0 !important;
  }
}

/* Hero Section */
.hero {
  /* height: 100vh; */
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(64, 80, 39, 0.9) 0%,
    rgba(66, 107, 28, 0.95) 100%
  );
  padding: 0;
  margin-top: 112px;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  min-height: 270px;
  display: flex;
  align-items: center;
}

.typed-text {
  color: white;
  font-weight: 700;
}

.hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Video Container Styles */
.hero-video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16/9;
  height: auto;
  align-self: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-video-container {
    max-width: 600px;
    margin: 0 auto;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    height: auto;
    padding: 0 0;
    padding-top: 20px;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero-subhead {
    margin-bottom: 2rem;
  }

  .hero-buttons {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Animated Background Elements */

/* Marketplace Section */
.marketplace-section {
  padding: 30px 5%;
  position: relative;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  color: #7a9a26;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-text {
  font-size: 30px;
  color: #26599a;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Community Section */
.community-section {
  padding: 1px 5%;
  background: linear-gradient(
    135deg,
    rgba(139, 176, 42, 0.03) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  position: relative;
  padding-bottom: 10px;
}

.community-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.community-text {
  flex: 1;
}

.community-image {
  flex: 1;
  position: relative;
  display: flex;
  gap: 20px;
}

.community-highlight {
  position: static;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-1 {
  top: -2px;
  left: -50px;
  width: 200px;
  animation: float 4s ease-in-out infinite;
}

.highlight-2 {
  bottom: -20px;
  right: -70px;
  width: 220px;
  animation: float 4s ease-in-out infinite reverse;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 15px;
}

.highlight-text {
  font-size: 14px;
  color: var(--gray);
}

/* Process Section */
.process-section {
  padding: 30px 5%;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-title::after {
  background: var(--secondary);
}

.process-section .section-text {
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  width: 18%;
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 10px 30px rgba(139, 176, 42, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover .step-number {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 176, 42, 0.4);
}

.step-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-section {
  padding: 30px 5%;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 15px;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  position: relative;
  border: 1px solid rgb(203, 203, 203);
  height: fit-content;
}

.team-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.team-content {
  padding: 20px;
}

#team .team-name {
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.team-name svg {
  fill: #6a8621;
  transition: 0.4s all;
}

#team .team-role {
  color: var(--primary);
  font-weight: 600;
  margin: 10px 0;
  font-size: 14px;
}
.hidden {
  display: none;
}
.team-bio {
  color: var(--gray);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 30px 5%;
  background: linear-gradient(
    135deg,
    rgba(64, 80, 39, 0.9) 0%,
    rgba(66, 107, 28, 0.95) 100%
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .section-title {
  color: var(--white);
}

.cta-section .section-title::after {
  background: var(--white);
}

.cta-form {
  max-width: 600px;
  margin: 20px auto 0;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

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

.form-group label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 176, 42, 0.1);
}

/* Animate CTA button (per screenshot) */
.cta-form.compact .submit-btn {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.2s ease-in-out infinite;
  background: #2f66ff;
  box-shadow: 0 6px 18px rgba(47, 102, 255, 0.35);
  width: 240px !important;
  max-width: 240px;
  padding: 12px 24px !important;
  font-size: 16px !important;
  border-radius: 28px;
  margin: 0 auto;
  display: block;
  justify-self: center;
  color: white;

  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-form.compact .submit-btn:hover {
  background: #2757de;
  box-shadow: 0 10px 24px rgba(39, 87, 222, 0.4);
}

.cta-form.compact .submit-btn::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -40%;
  width: 40%;
  height: 140%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  animation: ctaShine 3.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(139, 176, 42, 0.3);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 176, 42, 0.45);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(139, 176, 42, 0.3);
  }
}

@keyframes ctaShine {
  0% {
    left: -50%;
    opacity: 0;
  }
  15% {
    opacity: 0.35;
  }
  30% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 100px 5% 50px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  font-family: "Playfair Display", serif;
}

.footer-logo span {
  color: var(--white);
}

.footer-about {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.state-item {
  color: var(--white);
  font-size: 13px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(139, 176, 42, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 176, 42, 0.4);
}

.feature-highlights {
  max-width: 400px;
  min-width: 400px;
}

.feature-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  border-left: 4px solid #759324;
  padding: 10px;
  background-color: #7593240d;
  transition: 0.5s all;
}

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

.goal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.goal-phone {
  display: none;
}
@media (max-width: 600px) {
  .goal-phone {
    display: flex;
    font-size: 17px;
  }
  .goal-desktop {
    display: none;
  }

  .section-text {
    font-size: 22px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 60px;
  }

  .section-title {
    font-size: 42px;
  }

  .process-step {
    width: 16%;
  }
}

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

  .hero-subhead {
    font-size: 18px;
  }

  /* .mobile-menu-btn {
    display: block;
  } */

  .community-content {
    flex-direction: column;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .process-step {
    width: 48%;
    margin-bottom: 50px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .feature-highlights {
    min-width: 100%;
  }
  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 28px;
    min-height: 150px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .cta-form {
    padding: 16px;
  }
}

@media (max-width: 576px) {
  .community-highlight {
    width: fit-content;
    padding: 10px;
    font-size: 12px;
  }
  .logo img {
    max-width: 150px;
  }
  .inquires-text {
    font-size: 12px;
  }

  .hero {
    text-align: center;
    margin-top: 93px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 324px) {
  .inquires-text {
    font-size: 11px;
  }
}

/* About Us Section - Super Compact */
.about-us-section {
  background: white;
  padding: 25px 20px;
  border-bottom: 3px solid #6b8e23;
}

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

.about-us-header {
  text-align: center;
  margin-bottom: 10px;
}

.about-us-tagline {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 15px;
}

.about-us-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* Button with arrow icon */
.about-btn {
  background: white;
  border: 2px solid #e3e3e3;
  color: #6b8e23;
  padding: 10px 20px 10px 24px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.1s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 1px 1px 2px #00000026;
}

.about-btn:hover {
  background: #6b8e23;
  color: white;
  box-shadow: none;
}

.about-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.about-btn.active i {
  transform: rotate(180deg);
}

/* Social Media Icons - Super Compact with Font Awesome */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #6b8e23;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background: #5a7a1e;
  transform: scale(1.1);
}

/* Expandable Content Sections */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-top: 15px;
}

.expandable-content.active {
  max-height: 10000px;
  transition: max-height 0.6s ease-in;
}

.content-inner {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #6b8e23;
}

.content-title {
  color: #6b8e23;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Team Grid - Compact with card style from image */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.team-member {
  text-align: center;
  padding: 0;
  background: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(107, 142, 35, 0.3);
}

.team-avatar-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: linear-gradient(135deg, #6b8e23 0%, #8fbc8f 100%);
}

.team-avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

.team-info {
  background: #2b5f8c;
  color: white;
  padding: 10px 8px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.team-role {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Mission Content - Compact */
.mission-content {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
}

.mission-content p {
  margin-bottom: 10px;
}

.mission-content p:last-child {
  margin-bottom: 0;
}

/* Testimonials List - Compact */
.testimonials-list {
  display: grid;
  gap: 12px;
}

.testimonial-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #6b8e2329;
  background-color: #6a8e2305;
}

.testimonial-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-modal-avatar {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 1px;
}

.testimonial-info p {
  color: #666;
  font-size: 0.8rem;
}

.testimonial-item > p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.stars {
  color: #ffd700;
  font-size: 1.5rem;
  line-height: 0;
}

/* Modal Styles - Compact */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: white;
  margin: 3% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 950px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #333;
}

.modal-title {
  color: #6b8e23;
  font-size: 1.65rem;
  margin-bottom: 18px;
  clear: both;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 20px 15px;
  }

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

  .about-us-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .modal-content {
    padding: 18px;
    margin: 5% auto;
  }

  .about-us-header h2 {
    font-size: 1.4rem;
  }

  .about-us-tagline {
    font-size: 0.9rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .content-inner {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
