/*-----------------------------------*\
  #RESET & BASE STYLES
\*-----------------------------------*/

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

li { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
}

a,
img,
span,
input,
button { display: block; }

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

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input { width: 100%; }
button { cursor: pointer; }

html {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #e8ecf4;
  color: #1A3C34;
  font-size: 1.6rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/*-----------------------------------*\
  #REUSED STYLES
\*-----------------------------------*/

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

.btn {
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  max-width: max-content;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #4CAF50;
  color: #fff;
}

.btn-primary:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/*-----------------------------------*\
  #HEADER & NAVIGATION
\*-----------------------------------*/

.header {
  padding-block: 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #e8ecf4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  color: #1A3C34;
  font-family: 'Cuprum', sans-serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1;
}


/* Navbar styles for desktop */
.navbar {
  display: flex;
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  padding: 0;
  transform: none;
  box-shadow: none;
  align-items: center;
}

.navbar-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.navbar-link {
  padding: 10px 0;
  transition: color 0.3s ease;
}

.navbar-link:hover {
  color: #4CAF50;
}

/* Navbar styles for mobile */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 280px;
    height: 100%;
    background-color: #fff;
    color: #1A3C34;
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: block;
  }
  .navbar.active {
    transform: translateX(0);
  }
  .navbar-list {
    flex-direction: column;
    gap: 15px;
  }
}

.nav-open-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.nav-open-btn.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #1A3C34;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: hsla(0, 0%, 100%, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

.download-btn-navbar {
  background: linear-gradient(135deg, #4CAF50, #2ECC71);
  color: white !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.download-btn-navbar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

/*-----------------------------------*\
  #HERO SECTION
\*-----------------------------------*/

.hero {
  background-color: #f0f4f8;
  padding-block-start: 100px;
  text-align: center;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  align-items: center;
}

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

.hero-subtitle {
  color: #4CAF50;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #1A3C34;
  margin-block: 10px 15px;
}

.hero-text {
  color: #1A3C34;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-banner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/*-----------------------------------*\
  #ABOUT SECTION
\*-----------------------------------*/

.about {
  padding: 90px 0;
  background-color: #e8ecf4;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 0 25px;
  align-items: center;
}

.about-banner {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1A3C34;
  font-weight: 600;
}

.section-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #1A3C34;
  margin-bottom: 1.5rem;
}

.about-list {
  margin: 0 0 2rem;
  padding: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #1A3C34;
  background: transparent;
  padding: 0.8rem 1rem 0.8rem 1.5rem;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.about-list li:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.05);
  border-left: 2px solid #4CAF50;
}

/*-----------------------------------*\
  #TEAM SECTION
\*-----------------------------------*/

.elite-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
  margin: 20px 0;
}

.elite-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.elite-header {
  text-align: center;
  margin-bottom: 60px;
}

.elite-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #0f5132;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.elite-title-accent {
  color: #10b981;
  font-weight: 900;
  font-size: 4.6rem;
  letter-spacing: 0.2em;
}

.elite-subtitle {
  font-size: 1.8rem;
  color: #2f4f4f;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

.elite-leader-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.elite-leader-card .elite-card-inner {
  max-width: 720px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.25);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.elite-leader-card .elite-card-inner:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.elite-card-visual {
  flex: 0 0 40%;
  padding: 25px;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #a5d6a7 0%, #81c784 100%);
}

.elite-image-container {
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.elite-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.elite-card-content {
  padding: 24px 20px 30px;
}

.elite-card-name {
  font-size: 22px;
  font-weight: 900;
  color: #0f5132;
  margin-bottom: 8px;
}

.elite-leader-card .elite-card-name {
  font-size: 28px;
}

.elite-card-position {
  font-size: 16px;
  color: #2f4f4f;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.elite-card-bio {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 30px;
}

.elite-team-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.elite-card-inner {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
  max-width: 320px;
  margin: 0 auto;
}

.elite-card-inner:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

/*-----------------------------------*\
  #SERVICES SECTION
\*-----------------------------------*/

.eco-services {
  padding: 60px 0;
  background-color: #e8ecf4;
}

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

.eco-services-header {
  text-align: center;
  margin-bottom: 40px;
}

.eco-services-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4CAF50;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eco-services-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.eco-title-fill {
  color: #1A3C34;
}

.eco-title-stroke {
  -webkit-text-stroke: 1px #4CAF50;
  color: transparent;
}

.eco-services-description {
  font-size: 15px;
  color: #1A3C34;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.85;
}

.eco-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.eco-service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.eco-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
}

.eco-service-icon {
  width: 50px;
  height: 50px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.eco-service-card:hover .eco-service-icon {
  background: rgba(76, 175, 80, 0.2);
  transform: rotate(360deg);
}

.eco-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1A3C34;
  margin-bottom: 8px;
}

.eco-service-card:hover h3 {
  color: #4CAF50;
}

.eco-service-card p {
  font-size: 13px;
  color: rgba(26, 60, 52, 0.8);
  line-height: 1.5;
  margin-bottom: 12px;
}

.eco-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-service-features li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(26, 60, 52, 0.8);
}

.eco-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4CAF50;
  font-weight: 700;
  font-size: 14px;
}

.eco-services-cta {
  text-align: center;
  margin-top: 30px;
}

.eco-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(90deg, #4CAF50 0%, #43A047 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.eco-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/*-----------------------------------*\
  #FEATURES SECTION - IMPROVED STYLING
\*-----------------------------------*/

.eco-features {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf4 100%);
  position: relative;
  overflow: hidden;
}

.eco-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234CAF50' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.eco-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 1;
}

.eco-header {
  text-align: center;
  margin-bottom: 60px;
}

.eco-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4CAF50;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.eco-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4CAF50, #2ECC71);
}

.eco-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1A3C34;
}

.eco-description {
  font-size: 16px;
  color: #1A3C34;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Features Grid - Improved Layout */
.eco-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
}

.eco-feature-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(76, 175, 80, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.eco-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.eco-feature-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.eco-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eco-feature-card:hover .eco-feature-image {
  transform: scale(1.05);
}

.eco-feature-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(76, 175, 80, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.eco-feature-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.eco-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A3C34;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.eco-feature-card:hover .eco-feature-title {
  color: #4CAF50;
}

.eco-feature-text {
  font-size: 14px;
  color: rgba(26, 60, 52, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
  flex: 1;
}

.eco-feature-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.eco-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.eco-detail-item svg {
  width: 16px;
  height: 16px;
  fill: #4CAF50;
}

.eco-detail-item span {
  font-size: 13px;
  color: rgba(26, 60, 52, 0.9);
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .eco-features {
    padding: 80px 0;
  }
  
  .eco-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .eco-features {
    padding: 60px 0;
  }
  
  .eco-title {
    font-size: 32px;
  }
  
  .eco-features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .eco-feature-media {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .eco-title {
    font-size: 28px;
  }
  
  .eco-feature-content {
    padding: 20px;
  }
}

/*-----------------------------------*\
  #COLLABORATORS SECTION
\*-----------------------------------*/

.eco-collaborators {
  padding: 80px 0;
  background: linear-gradient(135deg, #F7FFF7 0%, #E8F8E8 100%);
}

.eco-collaborators-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.eco-collaborators-header {
  text-align: center;
  margin-bottom: 50px;
}

.eco-collaborators-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.eco-collaborators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.eco-collaborator-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(46, 204, 113, 0.1);
}

.eco-collaborator-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.2);
}

.eco-collaborator-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(46, 204, 113, 0.3);
  transition: border-color 0.3s ease;
}

.eco-collaborator-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #F7FFF7;
}

.eco-collaborator-content {
  text-align: center;
}

.eco-collaborator-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A3C34;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.eco-collaborator-card:hover .eco-collaborator-content h3 {
  color: #2ECC71;
}

/*-----------------------------------*\
  #DOWNLOAD SECTION
\*-----------------------------------*/

.download-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-content h2 {
  color: #1A3C34;
  font-size: 36px;
  margin-bottom: 20px;
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  background: #000;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.vj-footer {
  background-color: #e8ecf4;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  color: #1A3C34;
}

.vj-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.vj-footer-brand,
.vj-footer-nav,
.vj-footer-contact {
  flex: 1 1 280px;
}

.vj-logo {
  width: 100px;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vj-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.vj-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 10px;
}

.vj-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #4CAF50;
}

.vj-links,
.vj-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vj-links li,
.vj-contact-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vj-links a {
  color: #1A3C34;
  transition: color 0.3s ease;
}

.vj-links a:hover {
  color: #4CAF50;
}

.vj-contact-list i {
  color: #4CAF50;
  width: 18px;
}

.vj-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #4CAF50;
}

/*-----------------------------------*\
  #RESPONSIVE DESIGN
\*-----------------------------------*/

@media (max-width: 992px) {
  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .eco-collaborators-grid {
    grid-template-columns: 1fr;
  }

  .elite-leader-card .elite-card-inner {
    flex-direction: column;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .nav-open-btn {
    display: flex;
  }

  .navbar {
    width: 100%;
    max-width: 280px;
  }

  .hero-title,
  .elite-title {
    font-size: 2.5rem;
  }

  .eco-services-grid,
  .eco-features-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .vj-footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-inline: 10px;
  }

  .hero {
    padding-block-start: 80px;
    padding-block-end: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about {
    padding: 40px 15px;
    margin: 10px;
  }

  .about-banner {
    width: 250px;
    height: 250px;
  }

  .elite-team {
    padding: 40px 15px;
    margin: 10px;
  }

  .elite-card-inner {
    max-width: 100%;
    margin: 0 10px;
  }
}
