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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2d3a32;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1rem;
  }
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #0f9d58;
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.logo-text h1 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  color: #2d3a32;
}

.logo-text p {
  font-size: 0.7rem;
  margin: 0;
  color: #888;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #2d3a32;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0f9d58;
}

.nav-links a.active {
  color: #0f9d58;
  font-weight: 600;
}

.nav-cta {
  background-color: #0f9d58;
  color: #ffffff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-cta:hover {
  background-color: #0b7a44;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #2d3a32;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-container {
    padding: 0 15px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #0f9d58;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 157, 88, 0.3);
}

.btn-primary:hover {
  background-color: #0b7a44;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 157, 88, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #f0f0f0;
  color: #2d3a32;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 27, 20, 0.88) 0%, rgba(15, 157, 88, 0.25) 50%, rgba(13, 27, 20, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 20px;
  animation: fadeUp 0.8s ease both;
}

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

.hero-badge {
  display: inline-block;
  background-color: rgba(15, 157, 88, 0.25);
  border: 1px solid rgba(15, 157, 88, 0.4);
  color: #7de8b1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: #0f9d58;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-content {
    padding: 30px 15px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
}

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

.section-tag {
  display: inline-block;
  background-color: #e8f5ee;
  color: #0f9d58;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: #0d1b14;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: #6b7c72;
  max-width: 600px;
  margin: 0 auto;
}

.section-light .section-tag {
  background-color: rgba(15, 157, 88, 0.2);
  color: #7de8b1;
}

.section-light .section-title {
  color: #ffffff;
}

.section-light .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 157, 88, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(15, 157, 88, 0.14);
  transform: translateY(-6px);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image {
  transform: scale(1.07);
}

.card-body {
  padding: 28px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1b14;
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: #6b7c72;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f9d58;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 12px;
}

.bg-light {
  background-color: #f7faf8;
}

.bg-white {
  background-color: #ffffff;
}

.bg-dark {
  background-color: #0d1b14;
}

.bg-green {
  background-color: #0f9d58;
}

.bg-green-light {
  background-color: #e8f5ee;
}

.text-white {
  color: #ffffff;
}

.text-dark {
  color: #0d1b14;
}

.text-green {
  color: #0f9d58;
}

footer {
  background-color: #0d1b14;
  color: #b0b8b3;
  padding: 60px 0 20px;
}

footer h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
}

footer a {
  color: #b0b8b3;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0f9d58;
}

footer p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }

.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }

.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }

.rounded { border-radius: 8px; }
.rounded-full { border-radius: 50px; }

.shadow { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-slideIn {
  animation: slideIn 0.6s ease;
}

.animate-slideInUp {
  animation: slideInUp 0.6s ease;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #0f9d58;
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.1);
}

label {
  display: block;
  font-weight: 600;
  color: #2d3a32;
  margin-bottom: 8px;
}

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


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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0f9d58;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0b7a44;
}

.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
  transform: translateY(20px);
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(-50px);
}

.slide-left.appear {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  transform: translateX(50px);
}

.slide-right.appear {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  transform: scale(0.9);
}

.zoom-in.appear {
  opacity: 1;
  transform: scale(1);
}

/* Partner Card Enhancements */
.partner-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(15, 157, 88, 0.15);
  border-color: #0f9d58;
}

.partner-icon {
  font-size: 2rem;
  color: #0f9d58;
  margin-bottom: 15px;
  display: inline-block;
}

.ceo-section {
  padding: 80px 0;
  background-color: #f9fbf9;
}

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

.ceo-card {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.ceo-image-container {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #e8f5ee;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ceo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-name {
  font-size: 1.5rem;
  color: #2d3a32;
  margin-bottom: 5px;
}

.ceo-title {
  color: #0f9d58;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ceo-bio {
  color: #6b7c72;
  font-size: 0.95rem;
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: #fff;
}
.testimonials-section {
  padding: 80px 0;
  background-color: #f9fbf9;
}

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

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #6b7c72;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  color: #2d3a32;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.85rem;
  color: #0f9d58;
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e8f5ee;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2d3a32;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f9fbf9;
}

.faq-question i {
  color: #0f9d58;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: #6b7c72;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
}
