:root {
  --primary-color: #4a5f38;
  --background-light: #f5f5f5;
  --background-dark: #4a5f38;
  --text-dark: #121212;
  --text-light: #ffffff;
  --text-muted: #606060;
  --text-subtle: #e3e3e3;
  --border-light: #d1d1d1;
  --border-medium: rgba(74, 95, 56, 0.4);
}

body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--background-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section.dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.section-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 48px;
}

.dark-bg .section-title {
  color: var(--text-light);
}

.light-bg .section-title {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 32px;
  }
}


/* HEADER */
.site-header-wrapper {
  background-color: var(--background-light);
  border-bottom: 1px solid var(--border-light);
  padding: 34px 0;
}
.site-header {
  display: flex;
  justify-content: space-between;
}
.brand-name {
  font-family: 'Figtree', sans-serif;
  font-size: 24px;
  width: 219px;
  height: 29px;
  color: var(--primary-color);
}
.main-nav {
  display: flex;
  gap: 16px;
}
.main-nav a {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  padding: 5px 15px;
  transition: color 0.3s;
}
.main-nav a:hover {
    color: var(--primary-color);
}
.social-media {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-media img {
  width: 32px;
  height: 32px;
}

/* BURGER MENU */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: center;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

@media (max-width: 992px) {
  .site-header-wrapper {
    padding: 20px 0;
  }
  
  .brand-name {
    font-size: 20px;
    width: auto;
    height: auto;
  }
  
  .burger-menu {
    display: flex;
    margin-left: 10px;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--background-light);
    flex-direction: column;
    padding: 50px 30px 30px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    padding: 12px 0;
    font-size: 20px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .social-media {
    gap: 12px;
    margin-left: auto;
    margin-right: 10px;
  }
  
  .social-media img {
    width: 28px;
    height: 28px;
    left: 10%;
  }
}

@media (max-width: 768px) {
  .main-nav {
    width: 260px;
    padding: 70px 20px 20px;
  }
  
  .main-nav a {
    font-size: 18px;
  }
}


/* HERO SECTION */
.hero-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text-card {
  border: 1px solid var(--border-medium);
  border-radius: 32px;
  padding: 32px;
  width: 100%;
  max-width: 590px;
  height: 659px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-title {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 48px;
}
.hero-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.25;
  margin-top: auto;
  margin-bottom: 60px;
}
.hero-cta {
  position: absolute;
  bottom: 200px;
  right: 25%;
  transform: translateX(50%);
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: transform 0.3s;
}
.hero-cta:hover {
    transform: translateX(50%) scale(1.05);
}
.hero-image-container {
  flex: 1;
}
.hero-image {
  width: 100%;
  max-width: 590px;
  height: 658px;
  object-fit: cover;
  border-radius: 32px;
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .hero-text-card {
    height: auto;
    min-height: 500px;
    padding: 28px 28px 100px;
  }
  
  .hero-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
  
  .hero-subtitle {
    font-size: 26px;
    margin-bottom: 40px;
  }
  
  .hero-description {
    font-size: 16px;
    margin-bottom: 80px;
  }
  
  .hero-cta {
    width: 130px;
    height: 130px;
    font-size: 16px;
  }
  
  .hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-text-card {
    padding: 24px 24px 90px;
    min-height: 450px;
    border-radius: 24px;
  }
  
  .hero-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .hero-subtitle {
    font-size: 22px;
    margin-bottom: 32px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: -60px;
  }
  
  .hero-cta {
    width: 120px;
    height: 120px;
    font-size: 16px;
    bottom: 120px;
    right: 80%;
  }
  
  .hero-image {
    height: 400px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text-card {
    padding: 20px 20px 80px;
    min-height: 420px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-cta {
    width: 110px;
    height: 110px;
    font-size: 15px;
  }
  
  .hero-image {
    height: 350px;
  }
}


/* ABOUT SECTION */
.about-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-decoration {
    position: absolute;
    top: -30px;
    left: 55%;
    z-index: 0;
    opacity: 0.1;
}
.deco-circle-1 {
    width: 120px;
    height: 120px;
}
.title-divider {
  width: 120px;
  border: none;
  border-top: 1px solid #a1a1a1;
  margin: 0 auto 48px;
}
.about-text {
  max-width: 807px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-subtle);
}

@media (max-width: 768px) {
    .about-text {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .title-divider {
        width: 80px;
        margin-bottom: 32px;
    }
    .about-decoration {
        position: absolute;
        top: -25px;
        left: 70%;
        z-index: 0;
        opacity: 0.1;
    }
    
    .deco-circle-1 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .about-text {
        font-size: 16px;
    }
}


/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  padding: 32px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--background-light);
  border: 1px solid var(--border-medium);
}
.service-card.alt-bg {
  background-color: rgba(74, 95, 56, 0.2);
  border: none;
}
.service-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: rgba(0, 67, 70, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.service-icon-wrapper img {
  width: 24px;
  height: 24px;
}
.service-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--primary-color);
  min-height: 58px;
}
.service-description {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.25;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-card {
    padding: 24px;
    border-radius: 24px;
  }
  
  .service-title {
    font-size: 20px;
    min-height: auto;
  }
  
  .service-description {
    font-size: 16px;
    line-height: 1.4;
  }
}


/* APPROACH SECTION */
.approach-container {
  display: flex;
  align-items: center;
  gap: 90px;
  position: relative;
}
.approach-decoration {
    position: absolute;
    top: -30px;
    left: 65%;
    z-index: 0;
    opacity: 0.1;
}
.deco-circle-2 {
    width: 180px;
    height: 180px;
}
.approach-image-container {
  flex-shrink: 0;
  width: 488px;
}
.approach-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 32px;
}
.approach-content {
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.approach-title {
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.approach-subtitle {
  font-family: 'Marck Script', cursive;
  font-size: 16px;
  letter-spacing: 3.2px;
  color: #d2d2d2;
  margin-bottom: 24px;
}
.approach-divider {
  width: 120px;
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 0 0 56px 0;
}
.approach-text {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-subtle);
  margin-bottom: 65px;
}
.approach-cta {
  width: 150px;
  height: 150px;
  border: 1px solid var(--text-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--text-light);
  transition: background-color 0.3s, color 0.3s;
}
.approach-cta:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
}

@media (max-width: 992px) {
  .approach-container {
    flex-direction: column;
    gap: 40px;
  }
  .approach-image-container {
    width: 100%;
  }
  .approach-image {
    height: 400px;
    border-radius: 24px;
  }
  .approach-title {
    font-size: 32px;
  }
  .approach-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .approach-cta {
    width: 130px;
    height: 130px;
  }
  .deco-circle-2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .approach-image {
    height: 350px;
  }
  .approach-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .approach-subtitle {
    font-size: 14px;
  }
  .approach-divider {
    width: 80px;
    margin-bottom: 32px;
  }
  .approach-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .approach-cta {
    width: 120px;
    height: 120px;
    font-size: 16px;
  }
}


/* FORMAT SECTION */
.format-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  position: relative;
}
.format-decoration {
    position: absolute;
    right: -150px;
    top: 100px;
    z-index: 0;
    opacity: 0.2;
}
.deco-circle-3 {
    width: 400px;
    height: 400px;
}
.format-details {
  font-family: "Bold";
  font-weight: 70px;
  font-size: 10px;
  flex-basis: 35%;
  z-index: 1;
}
.format-details ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.format-details li {
  font-family: "Bold";
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
}
.format-details li strong {
  font-family: 'Bolt', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.format-details li span {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  color: #8e8e8e;
}
.format-image-container {
  flex-basis: 55%;
  z-index: 1;
}
.format-image {
  width: 100%;
  max-width: 590px;
  height: 625px;
  object-fit: cover;
  border-radius: 32px;
}

@media (max-width: 992px) {
  .format-container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .format-details {
    flex-basis: auto;
    width: 100%;
  }
  .format-image-container {
    flex-basis: auto;
    width: 100%;
  }
  .format-image {
    height: 400px;
    border-radius: 24px;
  }
  .format-details li {
    font-size: 24px;
  }
  .deco-circle-3 {
    width: 250px;
    height: 250px;
    right: -100px;
  }
}

@media (max-width: 768px) {
  .format-image {
    height: 350px;
  }
  .format-details li {
    font-size: 20px;
  }
  .format-details ul {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .format-details li {
    font-size: 18px;
  }
}


/* VALUES SECTION */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background-color: var(--background-light);
  border-radius: 32px;
  padding: 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 270px;
  box-sizing: border-box;
}

.value-card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-27.3deg);
  width: 250%;
  height: auto;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.value-title, .value-description {
    position: relative;
    z-index: 1;
}

.value-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--primary-color);
}

.value-description {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.2;
  max-width: 376px;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 20px;
  }
  
  .value-card {
    max-width: 100%;
    padding: 40px 32px;
    min-height: 220px;
    border-radius: 24px;
  }
  
  .value-title {
    font-size: 26px;
  }
  
  .value-description {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .value-card {
    padding: 32px 24px;
  }
  
  .value-title {
    font-size: 24px;
  }
}


/* TIMELINE */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  list-style-image: url('./img/study.png');
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #e3e3e3;
  top: 0;
  bottom: 0;
  left: 20px;
}
.timeline-item {
  padding: 10px 40px 30px 70px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 18px;
  width: 16px;
  height: 10px;
  /*border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid var(--background-light);*/
  z-index: 1;
  background-image: url('./img/study.png');
}
.timeline-year {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
}
.timeline-description {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #8e8e8e;
  line-height: 1.4;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 15px;
    }
    .timeline-item {
        padding: 10px 20px 25px 50px;
    }
    .timeline-item::before {
        left: 7px;
        width: 16px;
        height: 10px;
    }
    .timeline-year {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .timeline-description {
        font-size: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .timeline::after {
        left: 10px;
    }
    .timeline-item {
        padding: 8px 15px 20px 40px;
    }
    .timeline-item::before {
        left: 2px;
    }
    .timeline-year {
        font-size: 20px;
    }
    .timeline-description {
        font-size: 16px;
    }
}



/* CTA SECTION */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
}
.cta-decoration {
    position: absolute;
    top: -50px;
    right: -4%;
    z-index: 0;
    opacity: 0.1;
}
.deco-circle-4 {
    width: 175px;
    height: 175px;
}
.cta-image-container {
  flex-shrink: 0;
}
.cta-image {
  width: 285px;
  height: 281px;
  border-radius: 50%;
  object-fit: cover;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: 'Marck Script', cursive;
  font-size: 40px;
  color: var(--text-light);
  margin-bottom: 49px;
}
.cta-subtitle {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--text-subtle);
  margin-bottom: 8px;
}
.cta-quote {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #d6d6d6;
  line-height: 1.5;
  margin: 0 0 124px 0;
  padding: 0;
  border: 0;
}
.cta-links {
  display: flex;
  gap: 32px;
}
.cta-links a {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--text-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .cta-image {
        width: 220px;
        height: 220px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .cta-quote {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .cta-links {
        justify-content: center;
        flex-direction: column;
        gap: 24px;
    }

    .cta-links a {
        font-size: 20px;
    }

    .deco-circle-4 {
        width: 150px;
        height: 150px;
        top: 50px;
    }
}

@media (max-width: 480px) {
    .cta-image {
        width: 180px;
        height: 180px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-quote {
        margin-bottom: 40px;
    }

    .cta-links a {
        font-size: 18px;
    }

    .deco-circle-4 {
        width: 120px;
        height: 120px;
    }
}


/* FOOTER */
.site-footer-wrapper {
  background-color: var(--background-light);
  padding: 80px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--primary-color);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}
.footer-nav a {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dark);
}
.footer-divider {
  border: none;
  border-top: 1px solid #e3e3e3;
  margin: 0 0 40px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #8e8e8e;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social img {
  width: 24px;
  height: 24px;
}

@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        font-size: 22px;
    }
    
    .footer-nav {
        gap: 12px 24px;
    }
}

@media (max-width: 768px) {
    .site-footer-wrapper {
        padding: 60px 0 30px;
    }
    
    .footer-top {
        margin-bottom: 30px;
        gap: 24px;
    }
    
    .footer-brand {
        font-size: 20px;
    }
    
    .footer-nav a {
        font-size: 16px;
    }
    
    .footer-divider {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .copyright {
        font-size: 14px;
        text-align: center;
    }
    
    .footer-social img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .site-footer-wrapper {
        padding: 40px 0 24px;
    }
    
    .footer-nav {
        gap: 10px 16px;
    }
    
    .footer-nav a {
        font-size: 15px;
    }
}
