/* Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primary-color: #1e4620;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-text: #666;
  --border-color: #e1e1e1;
  --accent-color: #2d7434;
  --hover-color: #163018;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5 {
  font-weight: 400;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

.btn:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

.btn--outline {
  background-color: transparent;
  color: var(--primary-color);
}

.btn--outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn--green {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn--green:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Header Styles */
.header {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 400;
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.nav__link {
  position: relative;
  padding: 5px 0;
}

.nav__link:hover, .nav__link.active {
  color: #ccc;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero__text {
  margin-bottom: 30px;
  color: var(--light-text);
}

.hero__btn {
  min-width: 180px;
}

/* Section Styles */
.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

/* About Section */
.about {
  padding: 80px 0;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__text {
  margin-bottom: 20px;
  color: var(--light-text);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.service-card__icon {
  margin-bottom: 20px;
  overflow: hidden;
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-card__text {
  color: var(--light-text);
  font-size: 14px;
}

.services__cta {
  text-align: center;
  margin-top: 50px;
}

/* Process Section */
.process {
  padding: 80px 0;
}

.process__subtitle {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 50px;
  color: var(--light-text);
}

.process__steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process__step {
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: var(--secondary-color);
  position: relative;
}

.process__step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--border-color);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.process__step:last-child::after {
  display: none;
}

.process__step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-weight: 400;
}

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

.process__step-text {
  color: var(--light-text);
  font-size: 14px;
}

/* Partnership Section */
.partnership {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.partnership__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.partnership__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.partnership__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnership__text {
  margin-bottom: 30px;
  color: var(--light-text);
}

/* Features Section */
.features {
  padding: 80px 0;
}

.features__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 30px;
  border-radius: 8px;
  background-color: var(--secondary-color);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card__title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card__text {
  color: var(--light-text);
}

.features__cta {
  text-align: center;
  margin-top: 50px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--secondary-color);
}

.contact__subtitle {
  text-align: center;
  max-width: 400px;
  margin: 0 auto 50px;
  color: var(--light-text);
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.contact__form-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.contact__info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

.contact__info-icon img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.contact__info-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact__info-text a {
  color: var(--light-text);
}

.contact__info-text a:hover {
  color: var(--primary-color);
}

.contact__map {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 40px 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  margin-bottom: 10px;
}

.footer__copyright {
  font-size: 14px;
  opacity: 0.8;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-size: 14px;
  opacity: 0.8;
}

.footer__links a:hover {
  opacity: 1;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

.cookie-popup__inner {
  padding: 20px;
}

.cookie-popup__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.cookie-popup__title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.cookie-popup__text {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--light-text);
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.cookie-popup__accept,
.cookie-popup__reject {
  padding: 8px 16px;
  font-size: 14px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero__inner,
  .about__inner,
  .partnership__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .process__steps {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .process__step::after {
    display: none;
  }
  .features__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-main__address, .contact-main__contact {
  border-radius: 4px;
  background-color: var(--primary-color);
  padding: 10px;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--primary-color);
    padding: 80px 20px 20px;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    z-index: 99;
  }
  .nav.active {
    left: 0;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 100;
  }
  .menu-toggle.active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(7px, -6px);
            transform: rotate(-45deg) translate(7px, -6px);
  }
  .services__grid,
  .features__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero__title,
  .section-title {
    font-size: 28px;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .process__steps {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero {
    padding: 60px 0;
  }
  .hero__title {
    font-size: 24px;
  }
  .section-title {
    font-size: 24px;
  }
  .cookie-popup {
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

/* About Page Styles */
/* Hero About Section */
.hero-about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.hero-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.hero-about__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.hero-about__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero-about__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-about__text {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

/* Business Mindset Section */
.business-mindset {
  padding: 80px 0;
  text-align: center;
}

.business-mindset__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.business-mindset__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f8f9fa;
  padding: 30px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.business-mindset__card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.business-mindset__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.business-mindset__card-text {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* Expert Team Section */
.expert-team {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.expert-team__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.expert-team__member {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 350px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.expert-team__member:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.expert-team__member-image {
  height: 250px;
  overflow: hidden;
}

.expert-team__member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.expert-team__member-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 20px 20px 5px;
}

.expert-team__member-position {
  font-size: 14px;
  color: #666;
  margin: 0 20px 15px;
}

.expert-team__member-bio {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0 20px 20px;
}

/* Collaboration Process Section */
.collaboration-process {
  padding: 80px 0;
}

.collaboration-process__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.collaboration-process__steps {
  max-width: 800px;
  margin: 0 auto;
}

.collaboration-process__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}

.collaboration-process__step-number {
  background-color: var(--primary-color);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.collaboration-process__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.collaboration-process__step-text {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: #fff;
}

.contact-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-section__text {
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-section__details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-section__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-section__icon img {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.contact-section__detail p,
.contact-section__detail a {
  color: #fff;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact-section__detail a:hover {
  opacity: 1;
}

.contact-section__map {
  width: 100%;
}

.contact-section__map iframe {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-section__map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer adjustments for about page */
.footer__top {
  text-align: center;
  margin-bottom: 20px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business-mindset__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .expert-team__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .expert-team__member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .contact-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-section__details {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .expert-team__member {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .collaboration-process__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .collaboration-process__step-number {
    margin-bottom: 10px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .hero-about__title {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
}

/* Internship Page Styles */
/* Team Hero Section */
.team-hero {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.team-hero__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.team-hero__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-hero__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.team-hero__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.team-hero__text {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  text-align: center;
}

.benefits__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.benefits__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f8f9fa;
  padding: 30px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
}

.benefits__card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.benefits__card-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color);
}

.benefits__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefits__card-text {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

.benefits__cta {
  margin-top: 20px;
}

/* Team Experiences Section */
.team-experiences {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: #fff;
}

.team-experiences .section-title {
  color: #fff;
  margin-bottom: 50px;
}

.team-experiences__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.team-experience {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 350px;
  background-color: #1a3d1c;
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 20px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.team-experience:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.team-experience__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 30px auto 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.team-experience__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-experience__name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.team-experience__position {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 20px;
}

.team-experience__quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
  font-style: italic;
}

/* Internship Process Section */
.internship-process {
  padding: 80px 0;
  background-color: #fff;
}

.internship-process__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.6;
}

.internship-process__steps {
  max-width: 800px;
  margin: 0 auto;
}

.internship-process__step {
  margin-bottom: 40px;
  position: relative;
  padding-left: 40px;
}

.internship-process__step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
}

.internship-process__step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.internship-process__step-text {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: #fff;
}

.contact-section__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-section__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-section__text {
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-section__details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-section__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-section__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-section__icon img {
  width: 100%;
  height: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.contact-section__detail p,
.contact-section__detail a {
  color: #fff;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact-section__detail a:hover {
  opacity: 1;
}

.contact-section__map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-section__map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer adjustments for internship page */
.footer__top {
  text-align: center;
  margin-bottom: 20px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Animation classes */
.animate-fade-in {
  -webkit-animation: fadeIn 0.6s ease forwards;
          animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
  -webkit-animation: slideUp 0.6s ease forwards;
          animation: slideUp 0.6s ease forwards;
}

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

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

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

/* Responsive styles */
@media (max-width: 992px) {
  .team-hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefits__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-experiences__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .team-experience {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .contact-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-section__details {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-experiences__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .team-experience {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 350px;
  }
  .internship-process__step {
    padding-left: 0;
    padding-top: 40px;
    text-align: center;
  }
  .internship-process__step-number {
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .team-hero__title {
    font-size: 28px;
  }
  .section-title {
    font-size: 26px;
  }
  .benefits__card {
    padding: 40px 15px 20px;
  }
}

/* Contacts Page Styles */
/* Contact Main Section */
.contact-main {
  padding: 80px 0;
  min-height: calc(100vh - 180px);
  /* Account for header and footer */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

.contact-main__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-main__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-main__text {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-main__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.contact-main__address,
.contact-main__contact,
.contact-main__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.contact-main__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.contact-main__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-main__icon img {
  width: 20px;
  height: 20px;
}

.contact-main__detail p {
  color: #fff;
}

.contact-main__detail a {
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.contact-main__detail a:hover {
  color: var(--primary-color);
}

.contact-main__form-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact-main__form {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  background-color: #fff;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: #999;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
  color: #999;
}

.form-group input::-ms-input-placeholder,
.form-group textarea::-ms-input-placeholder {
  color: #999;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-main__form .btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contact-main__form .btn:hover {
  background-color: #1a3d1c;
}

/* Footer specific to contacts page */
.footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  text-align: center;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo a {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-color);
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.footer__links a {
  color: #666;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__copyright {
  color: #999;
  font-size: 14px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .contact-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 60px 0;
  }
  .contact-main__title {
    font-size: 28px;
  }
  .contact-main__details {
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .contact-main__title {
    font-size: 24px;
  }
  .contact-main__form {
    padding: 20px;
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.success {
  padding-top: 100px;
  padding-bottom: 100px;
}

.success__content {
  min-height: 30dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.success__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success__text {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.privacy-policy, .terms-of-service {
  padding-top: 120px;
  padding-bottom: 120px;
}

.privacy-policy h1, .terms-of-service h1 {
  font-size: 30px;
  margin-bottom: 24px;
}
/*# sourceMappingURL=style.css.map */