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

:root {
  --primary-green: #1a6b3a;
  --primary-green-dark: #0f4d28;
  --accent-green: #7cb342;
  --light-green: #e8f5e9;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

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

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

ul {
  list-style: none;
}

/* Top Bar */
.top-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 14px;
  transition: color 0.3s;
}

.top-link:hover {
  color: var(--primary-green);
}

.top-link i {
  color: var(--primary-green);
  font-size: 18px;
}

.search-btn {
  background: none;
  border: none;
  color: var(--primary-green);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}

.lang-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
}

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

.lang-btn img {
  width: 20px;
  height: 14px;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 2px;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.badge-number {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 600;
}

.logo-tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 3px;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary-green);
  transition: all 0.3s;
}

/* Navigation */
.main-nav {
  background-color: var(--primary-green);
}

.nav-menu {
  display: flex;
  justify-content: space-between;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  padding: 18px 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s;
}

.nav-item > a:hover {
  background-color: var(--primary-green-dark);
}

.nav-item i {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background-color: var(--light-green);
  color: var(--primary-green);
  padding-left: 25px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0;
  z-index: 2;
}

.slide-text {
  max-width: 800px;
}

.slide-text h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.slide-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* News Section */
.news-section {
  padding: 60px 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.news-date {
  font-size: 13px;
  color: var(--text-light);
}

/* Clients Section */
.clients-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-green);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.client-logo {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s;
}

.client-logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-logo:hover img {
  opacity: 1;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  position: relative;
}

.section-title-white {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.info-card {
  background-color: white;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--primary-green);
}

.info-icon i {
  font-size: 40px;
  color: var(--primary-green);
}

.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.4;
  text-transform: uppercase;
}

/* Announcements Section */
.announcements-section {
  padding: 60px 0;
  background-color: var(--white);
}

.announcements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.section-title-dark {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-green);
}

.announcement-card {
  background-color: var(--bg-light);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.announcement-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}

.download-link {
  background-color: var(--accent-green);
  color: white;
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.download-link:hover {
  background-color: var(--primary-green);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 20px;
  margin-right: 20px;
  transition: gap 0.3s;
}

.view-all-link:hover {
  gap: 12px;
}

.social-responsibility {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.social-responsibility img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 107, 58, 0.85), rgba(124, 179, 66, 0.85));
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.social-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.social-overlay p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.social-btn {
  background-color: var(--accent-green);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  background-color: white;
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Regional Section */
.regional-section {
  position: relative;
  padding: 100px 0;
  background-image: url("/placeholder.svg?height=500&width=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.regional-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 107, 58, 0.9), rgba(124, 179, 66, 0.8));
}

.regional-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
}

.regional-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.regional-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-white {
  display: inline-block;
  background-color: white;
  color: var(--primary-green);
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-white:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Bar */
.contact-bar {
  background-color: var(--accent-green);
  padding: 30px 0;
}

.contact-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.contact-item i {
  font-size: 28px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 16px;
  font-weight: 600;
}

.contact-item span {
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-dev strong {
  color: var(--accent-green);
}

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

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--primary-green-dark);
  }

  .announcements-wrapper {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 15px;
  }

  .logo h1 {
    font-size: 36px;
  }

  .logo-badge {
    width: 50px;
    height: 50px;
  }

  .badge-number {
    font-size: 20px;
  }

  .hero-slider {
    height: 400px;
  }

  .slide-text h2 {
    font-size: 28px;
  }

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

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

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

  .contact-bar-content {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #1a6b3a;
  --primary-green-dark: #0f4d28;
  --accent-green: #7cb342;
  --light-green: #e8f5e9;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

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

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

ul {
  list-style: none;
}

/* Top Bar */
.top-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 14px;
  transition: color 0.3s;
}

.top-link:hover {
  color: var(--primary-green);
}

.top-link i {
  color: var(--primary-green);
  font-size: 18px;
}

.search-btn {
  background: none;
  border: none;
  color: var(--primary-green);
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}

.lang-switcher {
  display: flex;
  gap: 5px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
}

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

.lang-btn img {
  width: 20px;
  height: 14px;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 60px;
}

.anniversary-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-green);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}

.anniversary-number {
  font-size: 32px;
  line-height: 1;
}

.anniversary-text {
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 2px;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.badge-number {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 600;
}

.logo-tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 3px;
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary-green);
  transition: all 0.3s;
}

/* Navigation */
.main-nav {
  background-color: var(--primary-green);
}

.nav-menu {
  display: flex;
  justify-content: space-between;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  padding: 18px 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s;
}

.nav-item > a:hover {
  background-color: var(--primary-green-dark);
}

.nav-item i {
  font-size: 10px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s;
}

.dropdown-menu li a:hover {
  background-color: var(--light-green);
  color: var(--primary-green);
  padding-left: 25px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 0;
  z-index: 2;
}

.slide-text {
  max-width: 800px;
}

.slide-text h2 {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.slide-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* News Section */
.news-section {
  padding: 60px 0;
  background-color: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 20px;
}

.news-content h3 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.news-date {
  font-size: 13px;
  color: var(--text-light);
}

/* Clients Section */
.clients-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-green);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.client-logo {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s;
}

.client-logo:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-logo:hover img {
  opacity: 1;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  position: relative;
}

.section-title-white {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-white::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.info-card {
  background-color: white;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed var(--primary-green);
}

.info-icon i {
  font-size: 40px;
  color: var(--primary-green);
}

.info-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.4;
  text-transform: uppercase;
}

/* Announcements Section */
.announcements-section {
  padding: 60px 0;
  background-color: var(--white);
}

.announcements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.section-title-dark {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-green);
}

.announcement-card {
  background-color: var(--bg-light);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.announcement-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}

.download-link {
  background-color: var(--accent-green);
  color: white;
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.download-link:hover {
  background-color: var(--primary-green);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 20px;
  margin-right: 20px;
  transition: gap 0.3s;
}

.view-all-link:hover {
  gap: 12px;
}

.social-responsibility {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.social-responsibility img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 107, 58, 0.85), rgba(124, 179, 66, 0.85));
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.social-overlay h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.social-overlay p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.social-btn {
  background-color: var(--accent-green);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.social-btn:hover {
  background-color: white;
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Regional Section */
.regional-section {
  position: relative;
  padding: 100px 0;
  background-image: url("/placeholder.svg?height=500&width=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.regional-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 107, 58, 0.9), rgba(124, 179, 66, 0.8));
}

.regional-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
}

.regional-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.regional-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-white {
  display: inline-block;
  background-color: white;
  color: var(--primary-green);
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-white:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Bar */
.contact-bar {
  background-color: var(--accent-green);
  padding: 30px 0;
}

.contact-bar-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.contact-item i {
  font-size: 28px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item strong {
  font-size: 16px;
  font-weight: 600;
}

.contact-item span {
  font-size: 14px;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  transition: all 0.3s;
}

.footer-column ul li a:hover {
  color: var(--accent-green);
  padding-left: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-dev strong {
  color: var(--accent-green);
}

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

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--primary-green-dark);
  }

  .announcements-wrapper {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 15px;
  }

  .logo-section {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    height: 50px;
  }

  .anniversary-badge {
    padding: 8px 15px;
  }

  .anniversary-number {
    font-size: 24px;
  }

  .hero-slider {
    height: 400px;
  }

  .slide-text h2 {
    font-size: 28px;
  }

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

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

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

  .contact-bar-content {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Training Courses Section */
.training-courses {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.course-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.course-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

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

.course-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
  line-height: 1.3;
}

.course-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.course-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.course-duration,
.course-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.course-duration i,
.course-level i {
  color: var(--accent-green);
  font-size: 14px;
}

.course-btn {
  display: block;
  background-color: var(--primary-green);
  color: white;
  text-align: center;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  border: 2px solid var(--primary-green);
}

.course-btn:hover {
  background-color: white;
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-green);
  padding: 15px 45px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive for Training Page */
@media (max-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }

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

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

/* Recruitment Page Styles */
.recruitment-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.available-positions {
  padding: 80px 0;
  background-color: var(--white);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  margin-top: -20px;
}

.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.position-card {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.position-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-green);
}

.position-header {
  margin-bottom: 20px;
}

.position-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.position-location,
.position-type,
.position-date {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.position-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.position-requirements {
  list-style: none;
  margin-bottom: 25px;
}

.position-requirements li {
  font-size: 14px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.position-requirements li:last-child {
  border-bottom: none;
}

.position-btn {
  display: block;
  background-color: var(--primary-green);
  color: white;
  text-align: center;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid var(--primary-green);
}

.position-btn:hover {
  background-color: white;
  color: var(--primary-green);
  transform: translateY(-2px);
}

/* Application Form */
.application-form {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.recruitment-form {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--border);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section-title::before {
  content: "";
  width: 4px;
  height: 30px;
  background-color: var(--accent-green);
  border-radius: 2px;
}

.form-section-description {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  background-color: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input[type="file"] {
  padding: 10px;
  border: 2px dashed var(--border);
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-group input[type="file"]:hover {
  border-color: var(--accent-green);
  background-color: var(--light-green);
}

.form-consent {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-green);
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}

.consent-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-green);
}

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

.submit-btn {
  background-color: var(--primary-green);
  color: white;
  border: none;
  padding: 15px 60px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(26, 107, 58, 0.3);
}

.submit-btn:hover {
  background-color: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 107, 58, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Responsive for Recruitment Page */
@media (max-width: 992px) {
  .positions-grid {
    grid-template-columns: 1fr;
  }

  .recruitment-form {
    padding: 35px;
  }

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

  .form-group.full-width {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .recruitment-form {
    padding: 25px;
  }

  .form-section-title {
    font-size: 20px;
  }

  .position-meta {
    flex-direction: column;
    gap: 8px;
  }

  .submit-btn {
    width: 100%;
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .available-positions {
    padding: 50px 0;
  }

  .application-form {
    padding: 50px 0;
  }

  .recruitment-form {
    padding: 20px;
  }

  .form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
  }
}

/* Mission and Vision Page Styles */
.mission-hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.mission-section {
  padding: 80px 0;
  background-color: var(--white);
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-icon {
  flex-shrink: 0;
}

.mission-text {
  flex: 1;
}

.mission-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.vision-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.vision-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-text {
  flex: 1;
  order: 1;
}

.vision-icon {
  flex-shrink: 0;
  order: 2;
}

.vision-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

.values-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title-center {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title-center::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-green);
  border-radius: 2px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
  margin: 0 auto 25px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-green);
  border-radius: 50%;
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  background-color: var(--accent-green);
  transform: scale(1.1);
}

.value-card:hover .value-icon svg path,
.value-card:hover .value-icon svg rect,
.value-card:hover .value-icon svg circle {
  stroke: white;
  fill: none;
}

.value-card:hover .value-icon svg circle[fill="#2d7a3e"] {
  fill: white;
}

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

.value-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.differentials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
}

.differentials-section .section-title-center {
  color: white;
}

.differentials-section .section-title-center::after {
  background-color: white;
}

.differentials-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.differential-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.differential-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.differential-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-green);
  border-radius: 50%;
}

.differential-text {
  flex: 1;
}

.differential-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.differential-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Responsive for Mission and Vision Page */
@media (max-width: 992px) {
  .mission-content,
  .vision-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .vision-text {
    order: 1;
  }

  .vision-icon {
    order: 1;
  }

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

  .differential-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .mission-section,
  .vision-section,
  .values-section,
  .differentials-section {
    padding: 60px 0;
  }

  .section-title-center {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .mission-description,
  .vision-description {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .differential-item {
    padding: 30px;
  }

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

  .differential-description {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .mission-content,
  .vision-content {
    gap: 30px;
  }

  .mission-icon svg,
  .vision-icon svg {
    width: 60px;
    height: 60px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
  }

  .value-icon svg {
    width: 40px;
    height: 40px;
  }

  .differential-icon {
    width: 80px;
    height: 80px;
  }

  .differential-icon svg {
    width: 50px;
    height: 50px;
  }
}
/* Logo Styles */
.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.anniversary-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
}

.badge-number {
    font-size: 32px;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    font-size: 9px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Header Responsive */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .anniversary-badge {
        padding: 8px 15px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 8px;
    }
}

/* Training Overview Section */
.training-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    background-color: var(--light-green);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Methodology Section */
.methodology-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.methodology-card {
    background-color: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.methodology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.methodology-card:hover .methodology-icon {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.methodology-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s;
}

.methodology-card:hover .methodology-icon i {
    color: white;
}

.methodology-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.methodology-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Training Programs Section */
.training-programs {
    padding: 80px 0;
    background-color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.program-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    text-align: center;
    color: white;
}

.program-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.program-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.program-content {
    padding: 30px;
}

.program-content ul {
    margin-bottom: 25px;
}

.program-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.program-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.program-content ul li:last-child {
    border-bottom: none;
}

.program-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-green);
    border-radius: 5px;
}

.program-duration i {
    color: var(--accent-green);
}

.program-duration span {
    font-weight: 600;
    color: var(--primary-green);
}

.program-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.program-btn:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    position: relative;
}

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

.result-item {
    text-align: center;
    color: white;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.result-text {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.95;
}

/* Responsive Design for Training Page */
@media (max-width: 1200px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .training-overview,
    .methodology-section,
    .training-programs,
    .results-section {
        padding: 60px 0;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .program-header {
        padding: 20px;
    }
    
    .program-header i {
        font-size: 36px;
    }
    
    .program-header h3 {
        font-size: 18px;
    }
    
    .program-content {
        padding: 20px;
    }
}
/* Consultoria Overview Section */
.consultoria-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    background-color: var(--light-green);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    text-align: center;
    color: white;
}

.service-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.service-content {
    padding: 30px;
}

.service-content ul {
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-green);
    border-radius: 5px;
}

.service-duration i {
    color: var(--accent-green);
}

.service-duration span {
    font-weight: 600;
    color: var(--primary-green);
}

.service-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.service-btn:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background-color: var(--white);
}

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

.case-study-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.case-study-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.case-study-link:hover {
    gap: 12px;
    color: var(--primary-green);
}

/* Responsive Design for Consultoria Page */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .consultoria-overview,
    .services-section,
    .case-studies {
        padding: 60px 0;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-header i {
        font-size: 36px;
    }
    
    .service-header h3 {
        font-size: 18px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .case-study-content {
        padding: 20px;
    }
}
/* Processos Overview Section */
.processos-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    background-color: var(--light-green);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.benefit-item {
    background-color: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    text-align: center;
    color: white;
}

.service-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.service-content {
    padding: 30px;
}

.service-content ul {
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-green);
    border-radius: 5px;
}

.service-duration i {
    color: var(--accent-green);
}

.service-duration span {
    font-weight: 600;
    color: var(--primary-green);
}

.service-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.service-btn:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.case-study-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.case-study-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.case-study-link:hover {
    gap: 12px;
    color: var(--primary-green);
}

/* Responsive Design for Processos Page */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .processos-overview,
    .services-section,
    .benefits-section,
    .case-studies {
        padding: 60px 0;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-header i {
        font-size: 36px;
    }
    
    .service-header h3 {
        font-size: 18px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .case-study-content {
        padding: 20px;
    }
}
/* Recrutamento Overview Section */
.recrutamento-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    background-color: var(--light-green);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.benefit-item {
    background-color: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: """;
    font-size: 80px;
    color: var(--light-green);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    text-align: center;
    color: white;
}

.service-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.service-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.service-content {
    padding: 30px;
}

.service-content ul {
    margin-bottom: 25px;
}

.service-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-content ul li:last-child {
    border-bottom: none;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-green);
    border-radius: 5px;
}

.service-duration i {
    color: var(--accent-green);
}

.service-duration span {
    font-weight: 600;
    color: var(--primary-green);
}

.service-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.service-btn:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Responsive Design for Recrutamento Page */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .recrutamento-overview,
    .services-section,
    .benefits-section,
    .partners-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header {
        padding: 20px;
    }
    
    .service-header i {
        font-size: 36px;
    }
    
    .service-header h3 {
        font-size: 18px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}
/* Cursos Overview Section */
.cursos-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    background-color: var(--light-green);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cursos Grid Section */
.cursos-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.curso-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.curso-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.curso-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    text-align: center;
    color: white;
}

.curso-header i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.curso-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.curso-content {
    padding: 30px;
}

.curso-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.curso-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-green);
    border-radius: 5px;
}

.curso-duration, .curso-level {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.curso-duration i, .curso-level i {
    color: var(--accent-green);
}

.curso-features {
    margin-bottom: 25px;
}

.curso-features ul {
    list-style: none;
}

.curso-features ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.curso-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.curso-features ul li:last-child {
    border-bottom: none;
}

.curso-btn {
    display: block;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.curso-btn:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.benefit-item {
    background-color: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon i {
    color: white;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: """;
    font-size: 80px;
    color: var(--light-green);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Cursos Page */
@media (max-width: 1200px) {
    .cursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .cursos-overview,
    .cursos-grid-section,
    .benefits-section,
    .testimonials-section {
        padding: 60px 0;
    }
    
    .overview-text h2 {
        font-size: 28px;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .curso-details {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .curso-header {
        padding: 20px;
    }
    
    .curso-header i {
        font-size: 36px;
    }
    
    .curso-header h3 {
        font-size: 18px;
    }
    
    .curso-content {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}
/* Inscricao Section */
.inscricao-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.inscricao-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.inscricao-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    color: white;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.inscricao-form {
    padding: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: var(--accent-green);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 107, 58, 0.3);
}

/* Inscricao Info */
.inscricao-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    border-radius: 10px;
    color: white;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-details i {
    width: 20px;
    text-align: center;
}

/* Next Steps Section */
.next-steps {
    padding: 80px 0;
    background-color: var(--white);
}

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

.step-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design for Inscricao Page */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .inscricao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .inscricao-info {
        order: -1;
    }
}

@media (max-width: 768px) {
    .inscricao-section,
    .next-steps,
    .faq-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .inscricao-form {
        padding: 30px 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-item {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .form-header {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .inscricao-form {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .contact-info {
        padding: 25px 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus) {
    border-color: var(--accent-green);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) ~ .error-message,
.form-group select:invalid:not(:focus) ~ .error-message {
    display: block;
}
/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: white;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
    background-color: var(--accent-green);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon i {
    color: white;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-form-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 30px;
    color: white;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.contact-form {
    padding: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 107, 58, 0.3);
}

/* Map Container */
.map-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: fit-content;
}

.map-placeholder {
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

.map-actions {
    margin-top: 20px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.map-btn:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
}

/* Offices Section */
.offices-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.office-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.office-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.office-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    padding: 25px;
    text-align: center;
    color: white;
}

.office-header i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
}

.office-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.office-content {
    padding: 30px;
}

.office-content p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.office-content p strong {
    color: var(--primary-green);
}

.office-content i {
    color: var(--accent-green);
    width: 20px;
    margin-right: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    color: var(--primary-green);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-green);
}

/* Responsive Design for Contactos Page */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section,
    .offices-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .form-header {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .map-placeholder {
        padding: 30px 20px;
    }
    
    .office-header {
        padding: 20px;
    }
    
    .office-content {
        padding: 25px 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Form Validation Styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: var(--accent-green);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) ~ .error-message,
.form-group select:invalid:not(:focus) ~ .error-message,
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) ~ .error-message {
    display: block;
}