/* Colors */
:root {
  --green: #0f9833;
  --white: #ffffff;
  --blue: #45cdcf;
  --orange: #ab6cd8;
  --dark-text: #1d1d1d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  
  
  background-color: var(--white);
  color: var(--dark-text);
  padding-top: 80px;
  scroll-behavior: smooth;
} 
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(15, 152, 51, 0.1);
}

.navbar.shrink {
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-1px);
}

.logo {
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  padding: 0.5rem 0;
}

.logo img {
  height: 80px;
  margin-right: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.shrink .logo img {
  height: 48px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar.shrink .logo-text {
  font-size: 1.25rem;
}

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger-menu:hover .hamburger-line {
  background: #0d7a2a;
}

/* Hamburger Animation - X State */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.nav-links a:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 2rem;
  }
  
  .navbar.shrink {
    padding: 0.6rem 1.5rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {   
  .navbar {
    padding: 1rem 1.5rem;
  }
  
  .navbar.shrink {
    padding: 0.8rem 1.5rem;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
  }
  
  /* Hide regular nav links on mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(15, 152, 51, 0.1);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(15, 152, 51, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
  }
  
  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered animation for menu items */
  .nav-links a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links a:nth-child(2) { transition-delay: 0.15s; }
  .nav-links a:nth-child(3) { transition-delay: 0.2s; }
  .nav-links a:nth-child(4) { transition-delay: 0.25s; }
  .nav-links a:nth-child(5) { transition-delay: 0.3s; }
  .nav-links a:nth-child(6) { transition-delay: 0.35s; }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover {
    color: var(--green);
    background: rgba(15, 152, 51, 0.05);
    padding-left: 1rem;
    transform: translateX(0);
  }
  
  .logo img {
    height: 55px;
  }
  
  .navbar.shrink .logo img {
    height: 44px;
  }
  
  .logo-text {
    font-size: 1.25rem;
  }
}
  
/* Enhanced Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Account for fixed navbar */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 2rem;
  color: white;
  margin-top: -40px; /* Adjust for better vertical centering */
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.375rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  margin-bottom: 2rem; /* Add space above indicators */
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 152, 51, 0.4);
}

.btn-secondary {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--green);
  border-color: white;
  box-shadow: 0 0 0 3px rgba(15, 152, 51, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    height: 90vh;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-actions {
    gap: 1.25rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 1.125rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
  }
  
  .hero-indicators {
    bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 70vh;
    min-height: 400px;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-badge {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .hero-indicators {
    bottom: 1.5rem;
    gap: 0.75rem;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Enhanced Solutions Section */
.solutions {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
  position: relative;
  margin-top: -2rem;
}

.solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(15,152,51,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

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

.solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.solutions-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.solutions-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.solutions-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.solution-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 400px;
  flex: 1;
  max-width: 220px;
  min-width: 0;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

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

.solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.solution-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 2.5rem; /* space for the arrow */
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.solution-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-arrow {
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
  transition: all 0.3s ease;
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  align-self: flex-start;
  pointer-events: none;
}

.solution-card:hover .solution-arrow {
  transform: translateX(8px);
  color: #0d7a2a;
}

@media (max-width: 1200px) {
  .solution-card {
    max-width: 200px;
    padding: 1.75rem;
    min-height: 300px;
  }
}

@media (max-width: 1024px) {
  .solution-card {
    padding: 1.5rem;
    max-width: 180px;
    min-height: 280px;
  }
  .solution-icon {
    width: 60px;
    height: 60px;
  }
  .solution-icon img {
    width: 35px;
    height: 55px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .solution-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
    min-height: auto;
  }
  .solution-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  .solution-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  .solution-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .solution-arrow {
    align-self: flex-end;
    margin-top: auto;
  }
}

@media (max-width: 480px) {
  .solution-card {
    padding: 1.5rem;
    max-width: 100%;
    min-height: auto;
  }
  .solution-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.25rem;
  }
  .solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .solution-card p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  .solution-arrow {
    font-size: 1.25rem;
  }
}

@media (max-width: 360px) {
  .solution-card {
    padding: 1.25rem;
    min-height: auto;
  }
  .solution-icon {
    width: 55px;
    height: 55px;
    margin-right: 1rem;
  }
  .solution-card h3 {
    font-size: 1.125rem;
  }
  .solution-card p {
    font-size: 0.85rem;
  }
}

/* === BACKGROUND GENERAL DE LA SECCIÓN === */
.about {
  background-image: url('Images/bga.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8rem 0;
  position: relative;
  color: var(--dark-text);
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 0;
}

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

/* Hero Section */
.about-hero {
  margin-bottom: 8rem;
}

.about-hero-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  min-height: 600px;
}

.about-hero-text {
  flex: 1;
  max-width: 650px;
}

.about-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-hero-image img:hover {
  transform: scale(1.03);
}

/* Mission Section */
.about-section {
  margin-bottom: 8rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  min-height: 550px;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Typography */
.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(15, 152, 51, 0.3);
}

.about-heading {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.about-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.about-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
  letter-spacing: 0.5px;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 152, 51, 0.4);
}

/* CEO Section */
.about-ceo {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  padding: 4rem;
  margin-top: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ceo-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ceo-image {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 6px solid white;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ceo-text {
  flex: 1;
  max-width: 600px;
}

.ceo-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ceo-name {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.ceo-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

.ceo-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(15, 152, 51, 0.3);
}

.ceo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-container {
    max-width: 1000px;
  }
  
  .about-hero-content,
  .about-content {
    gap: 4rem;
  }
  
  .about-heading {
    font-size: 2.875rem;
  }
}

@media (max-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
  
  .about-hero-content,
  .about-content {
    gap: 3rem;
  }
  
  .about-heading {
    font-size: 2.5rem;
  }
  
  .about-description {
    font-size: 1.125rem;
  }
  
  .ceo-content {
    gap: 3rem;
  }
  
  .ceo-image {
    width: 240px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
  
  .about-container {
    padding: 0 1.5rem;
  }
  
  .about-hero,
  .about-section {
    margin-bottom: 5rem;
  }
  
  .about-hero-content,
  .about-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  
  .about-hero-text,
  .about-text {
    max-width: 100%;
  }
  
  .about-heading {
    font-size: 2.25rem;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .about-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .about-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  /* CEO Section Mobile */
  .about-ceo {
    padding: 3rem 2rem;
    margin-top: 3rem;
  }
  
  .ceo-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  
  .ceo-image {
    width: 200px;
    height: 200px;
  }
  
  .ceo-name {
    font-size: 2rem;
  }
  
  .ceo-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 3rem 0;
  }
  
  .about-container {
    padding: 0 1rem;
  }
  
  .about-hero,
  .about-section {
    margin-bottom: 4rem;
  }
  
  .about-heading {
    font-size: 2rem;
  }
  
  .about-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
  }
  
  .about-cta {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
  }
  
  .about-ceo {
    padding: 2.5rem 1.5rem;
  }
  
  .ceo-image {
    width: 180px;
    height: 180px;
  }
  
  .ceo-name {
    font-size: 1.75rem;
  }
}

.services {
  padding: 4rem 2rem;
  background-image: url('Images/bg\ 2.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.services-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.services-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.services-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1d1d1d;
}

/* Enhanced Clients & Industries Section */
.tags-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 6rem 0;
  position: relative;
}

.tags-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(15,152,51,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.6;
}

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

.tags-header {
  text-align: center;
  margin-bottom: 4rem;
}

.tags-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.tags-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.tags-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tags-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
}

.tag-column {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.tag-column-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(15, 152, 51, 0.1);
}

.tag-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.tag-title {
  font-size: 1.75rem;
  color: var(--dark-text);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.tag-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tag-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.tag-item:hover::before {
  transform: scaleY(1);
}

.tag-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tag-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  transition: color 0.3s ease;
}

.tag-arrow {
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 700;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.tag-item:hover .tag-arrow {
  transform: translateX(5px);
  color: #0d7a2a;
  opacity: 1;
}

.tag-item:hover .tag-text {
  color: var(--green);
}

/* Vertical Divider */
.vertical-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  margin: 0 2rem;
  min-height: 400px;
  opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tags-content {
    gap: 3rem;
  }
  
  .tags-title {
    font-size: 2.5rem;
  }
  
  .tag-column {
    min-width: 260px;
  }
}

@media (max-width: 1024px) {
  .tags-section {
    padding: 5rem 0;
  }
  
  .tags-title {
    font-size: 2.25rem;
  }
  
  .tags-subtitle {
    font-size: 1.125rem;
  }
  
  .tag-column-header {
    margin-bottom: 1.5rem;
  }
  
  .tag-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .tag-title {
    font-size: 1.5rem;
  }
  
  .tag-item {
    padding: 1rem 1.25rem;
  }
  
  .tag-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .tags-section {
    padding: 4rem 0;
  }
  
  .tags-container {
    padding: 0 1.5rem;
  }
  
  .tags-header {
    margin-bottom: 3rem;
  }
  
  .tags-title {
    font-size: 2rem;
  }
  
  .tags-subtitle {
    font-size: 1rem;
  }
  
  .tags-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .tag-column {
    width: 100%;
    max-width: 500px;
  }
  
  .vertical-divider {
    display: none;
  }
  
  .tag-column-header {
    justify-content: center;
    text-align: center;
  }
  
  .tag-item {
    padding: 1rem 1.5rem;
  }
  
  .tag-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .tags-section {
    padding: 3rem 0;
  }
  
  .tags-container {
    padding: 0 1rem;
  }
  
  .tags-title {
    font-size: 1.75rem;
  }
  
  .tags-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .tag-icon {
    width: 45px;
    height: 55px;
    font-size: 1.25rem;
  }
  
  .tag-title {
    font-size: 1.25rem;
  }
  
  .tag-item {
    padding: 0.875rem 1.25rem;
  }
  
  .tag-text {
    font-size: 1rem;
  }
  
  .tag-arrow {
    font-size: 1.125rem;
  }
}

.latest-news {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.latest-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, #0ea5e9 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.news-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--green);
}

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

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

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

.news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 152, 51, 0.8) 0%, rgba(14, 165, 233, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card:hover .news-overlay {
  opacity: 1;
}

.news-tag {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.news-content {
  padding: 2rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.news-date {
  color: #64748b;
  font-weight: 500;
}

.news-category {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
}

.news-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-excerpt {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #059669;
  gap: 0.75rem;
}

.news-link svg {
  transition: transform 0.3s ease;
}

.news-link:hover svg {
  transform: translateX(4px);
}

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

.news-cta .btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(15, 152, 51, 0.2);
}

.news-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 152, 51, 0.3);
}

/* Responsive Design for News Section */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .latest-news {
    padding: 5rem 2rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
  
  .news-title {
    font-size: 2.2rem;
  }
  
  .news-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .latest-news {
    padding: 4rem 1.5rem;
  }
  
  .news-header {
    margin-bottom: 3rem;
  }
  
  .news-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .news-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .news-subtitle {
    font-size: 0.95rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .news-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .news-image {
    height: 200px;
  }
  
  .news-content {
    padding: 1.5rem;
  }
  
  .news-heading {
    font-size: 1.2rem;
  }
  
  .news-excerpt {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .latest-news {
    padding: 3rem 1rem;
  }
  
  .news-header {
    margin-bottom: 2.5rem;
  }
  
  .news-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
  
  .news-title {
    font-size: 1.8rem;
  }
  
  .news-subtitle {
    font-size: 0.9rem;
  }
  
  .news-grid {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .news-image {
    height: 180px;
  }
  
  .news-content {
    padding: 1.25rem;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .news-heading {
    font-size: 1.1rem;
  }
  
  .news-excerpt {
    font-size: 0.9rem;
  }
  
  .news-cta .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

/* Newsletter Article Styles */
.newsletter-article {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
}

.article-header {
  background: linear-gradient(135deg, var(--green) 0%, #0ea5e9 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-category,
.article-date,
.article-author {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.article-content {
  padding: 3rem;
}

.article-intro {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.article-quote {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-left: 4px solid var(--green);
  padding: 2rem;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  font-style: italic;
  border-radius: 0 12px 12px 0;
}

.article-list {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.article-list li {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
}

.article-list li::before {
  content: '•';
  color: var(--green);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: -1.5rem;
  top: -0.2rem;
}

.article-content p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.article-content strong {
  color: var(--dark);
  font-weight: 700;
}

.article-cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0 1rem;
  text-align: center;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.article-cta .btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(15, 152, 51, 0.2);
}

.article-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 152, 51, 0.3);
}

/* Responsive Design for Newsletter Article */
@media (max-width: 768px) {
  .newsletter-article {
    margin: 0 1rem;
  }
  
  .article-header {
    padding: 1.5rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .article-content {
    padding: 2rem;
  }
  
  .article-intro {
    font-size: 1.1rem;
  }
  
  .article-quote {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
  
  .article-content p {
    font-size: 1rem;
  }
  
  .article-list li {
    font-size: 1rem;
  }
  
  .article-cta {
    padding: 2rem;
  }
  
  .cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .newsletter-article {
    margin: 0 0.5rem;
  }
  
  .article-header {
    padding: 1rem;
  }
  
  .article-content {
    padding: 1.5rem;
  }
  
  .article-intro {
    font-size: 1rem;
  }
  
  .article-quote {
    font-size: 1rem;
    padding: 1.25rem;
  }
  
  .article-content p {
    font-size: 0.95rem;
  }
  
  .article-list li {
    font-size: 0.95rem;
  }
  
  .article-cta {
    padding: 1.5rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .article-cta .btn-primary {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

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

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, #0ea5e9 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green) 0%, #0ea5e9 100%);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.contact-details p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--dark);
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 152, 51, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

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

.contact-submit {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(15, 152, 51, 0.2);
  width: 100%;
  justify-content: center;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(15, 152, 51, 0.3);
}

.contact-submit svg {
  transition: transform 0.3s ease;
}

.contact-submit:hover svg {
  transform: translateX(4px);
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }
  
  .contact-header {
    margin-bottom: 3rem;
  }
  
  .contact-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact-subtitle {
    font-size: 0.95rem;
  }
  
  .contact-info {
    gap: 1.5rem;
  }
  
  .contact-info-item {
    padding: 1.25rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 3rem 1rem;
  }
  
  .contact-header {
    margin-bottom: 2.5rem;
  }
  
  .contact-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-info-item {
    padding: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-details h4 {
    font-size: 1rem;
  }
  
  .contact-details p {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  
  .contact-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

.site-footer {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  position: relative;
  z-index: 1;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Company Info Section */
.footer-section.company-info {
  grid-column: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 50px;
  margin-right: 1rem;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}

.company-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b8c1;
  margin-bottom: 2rem;
  max-width: 400px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #b0b8c1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

/* Footer Sections */
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 12px;
}

.footer-links a:hover::before {
  width: 8px;
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #b0b8c1;
  font-size: 0.95rem;
}

.contact-info .contact-item svg {
  margin-right: 12px;
  color: var(--green);
  flex-shrink: 0;
}

.contact-info .contact-item span {
  line-height: 1.4;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(15, 152, 51, 0.1) 0%, rgba(15, 152, 51, 0.05) 100%);
  border: 1px solid rgba(15, 152, 51, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.newsletter-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: #b0b8c1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.25rem;
  backdrop-filter: blur(10px);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #8a94a6;
}

.newsletter-form button {
  background: var(--green);
  border: none;
  border-radius: 8px;
  padding: 1rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: #0d7a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 152, 51, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #8a94a6;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #8a94a6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-section.company-info {
    grid-column: 1 / -1;
  }
  
  .footer-section.contact-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section.company-info {
    text-align: center;
  }
  
  .company-description {
    max-width: none;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-section h4 {
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .contact-info .contact-item {
    justify-content: center;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2rem 1rem 0;
  }
  
  .footer-main {
    gap: 1.5rem;
  }
  
  .footer-logo h3 {
    font-size: 1.5rem;
  }
  
  .company-description {
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* Page Hero Section for individual pages */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  padding: 6rem 2rem 4rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 152, 51, 0.7);
  z-index: 1;
}

.page-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-hero-subtitle {
  color: #f4a300;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 500;
}

.page-hero-image {
  text-align: right;
}

.page-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Navigation */
.breadcrumb {
  background-color: #f8f9fa;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #718096;
  margin: 0 0.5rem;
}

.breadcrumb .current {
  color: var(--dark-text);
  font-weight: 600;
}

/* Main Content Layout */
.main-content {
  padding: 4rem 2rem;
  background-color: white;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}

/* Newsletter specific content container override */
.content-container:has(.newsletter-article),
.content-container.newsletter-layout {
  display: block;
  grid-template-columns: none;
  max-width: 1000px;
}

/* Sidebar */
.sidebar {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
  border: 1px solid #e2e8f0;
}

.quick-links h3 {
  color: var(--dark-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--green);
  padding-bottom: 0.5rem;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 0.75rem;
}

.quick-links a {
  color: #4a5568;
  font-weight: 500;
  padding: 0.75rem 0;
  display: block;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
}

.quick-links a:hover {
  color: var(--green);
  border-left-color: var(--green);
  background-color: rgba(15, 152, 51, 0.05);
  padding-left: 1.25rem;
}

/* Main Content Area */
.content-main {
  padding-right: 1rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
  font-size: 2rem;
}

.content-section h3 {
  color: var(--green);
  margin: 2rem 0 1rem 0;
  font-size: 1.5rem;
}

.content-section h4 {
  color: var(--dark-text);
  margin: 1.5rem 0 0.75rem 0;
  font-size: 1.25rem;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-section li {
  margin-bottom: 0.75rem;
  color: #4a5568;
  line-height: 1.6;
}

.content-section li strong {
  color: var(--dark-text);
}

.content-section p {
  margin-bottom: 1rem;
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
}

/* Service Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centra las filas incompletas */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-block {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 0 1 350px;
  width: 300px;
  min-width: 300px;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
}

.service-block:hover {
  transform: translateY(-5px);
}

.service-image {
  padding: 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.service-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sub-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-services a {
  color: var(--dark-text);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.sub-services a:hover {
  background-color: #f0f0f0;
  color: var(--green);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-block {
    flex: 0 1 100%;
    max-width: 500px;
  }
}

/* Industries/Categories Section */
.industries-section {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.industries-section h3 {
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.industry-tags strong {
  background-color: var(--green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.industry-tags strong:hover {
  background-color: var(--blue);
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  margin: 3rem 0;
}

.cta-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.cta-section p {
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-btn {
  background-color: #f4a300;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--dark-text);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .page-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  
 .page-hero-image {
    text-align: center;
    order: -1;
  }
  
  .content-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sidebar {
    order: 2;
  }
  
  .content-main {
    order: 1;
    padding-right: 0;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-tags {
    justify-content: center;
  }
  
  .stats-section {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 2rem;
  }
  
  .sidebar {
    padding: 1.5rem;
  }
  
  .quick-links a {
    padding-left: 0.5rem;
  }
  
  .quick-links a:hover {
    padding-left: 0.75rem;
  }
  
  .main-content {
    padding: 2rem 1rem;
  }
}

/* Detailed Services Section */
.detailed-services {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-header h2 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.services-header p {
  font-size: 1.1rem;
  color: #666;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-block {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 300px;
  max-width: 350px;
  margin: 0;
}

.service-block:hover {
  transform: translateY(-5px);
}

.service-image {
  padding: 2rem;
  background-color: #f8f9fa;
  text-align: center;
}

.service-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sub-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-services a {
  color: var(--dark-text);
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.sub-services a:hover {
  background-color: #f0f0f0;
  color: var(--green);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-block {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* CEO Biography Page Styles */
.ceo-bio {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  padding-top: 100px;
}

.ceo-bio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.ceo-hero {
  background: white;
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ceo-hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.ceo-hero-image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 8px solid white;
}

.ceo-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ceo-hero-image img:hover {
  transform: scale(1.05);
}

.ceo-hero-text {
  flex: 1;
}

.ceo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(15, 152, 51, 0.3);
}

.ceo-name {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.ceo-title {
  font-size: 1.5rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 600;
}

.ceo-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
}

/* Section Styles */
.ceo-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  border-radius: 2px;
}

/* Philosophy Section */
.philosophy-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.philosophy-text {
  font-size: 1.375rem;
  line-height: 1.8;
  color: #4a5568;
  font-style: italic;
  font-weight: 500;
  position: relative;
  padding: 2rem;
}

.philosophy-text::before,
.philosophy-text::after {
  content: '"';
  font-size: 4rem;
  color: var(--green);
  position: absolute;
  opacity: 0.3;
}

.philosophy-text::before {
  top: 0;
  left: 0;
}

.philosophy-text::after {
  bottom: 0;
  right: 0;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.certification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cert-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cert-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.cert-content p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Education Timeline */
.education-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.education-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.education-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--green), transparent);
}

.education-year {
  flex-shrink: 0;
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 15px rgba(15, 152, 51, 0.3);
}

.education-content {
  flex: 1;
  padding-top: 0.5rem;
}

.education-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.institution {
  font-size: 1.125rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.focus {
  color: #64748b;
  font-size: 0.95rem;
}

/* Experience Timeline */
.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.experience-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.experience-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  top: 80px;
  width: 2px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, var(--green), transparent);
}

.experience-year {
  flex-shrink: 0;
  width: 120px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(15, 152, 51, 0.3);
}

.experience-content {
  flex: 1;
  padding-top: 0.5rem;
}

.experience-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.company {
  font-size: 1.125rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.description {
  color: #4a5568;
  line-height: 1.6;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.award-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.award-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.award-item p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Back Link */
.ceo-back-link {
  text-align: center;
  margin: 3rem 0;
}

.back-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(15, 152, 51, 0.4);
}

/* Responsive Design for CEO Bio */
@media (max-width: 1024px) {
  .ceo-hero-content {
    gap: 3rem;
  }
  
  .ceo-name {
    font-size: 3rem;
  }
  
  .ceo-hero-image {
    width: 250px;
    height: 250px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ceo-bio-container {
    padding: 0 1.5rem;
  }
  
  .ceo-hero {
    padding: 3rem 2rem;
  }
  
  .ceo-hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  
  .ceo-hero-image {
    width: 200px;
    height: 200px;
  }
  
  .ceo-name {
    font-size: 2.5rem;
  }
  
  .ceo-title {
    font-size: 1.25rem;
  }
  
  .ceo-intro {
    font-size: 1.125rem;
  }
  
  .ceo-section {
    padding: 2.5rem 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .philosophy-text {
    font-size: 1.125rem;
    padding: 1.5rem;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .education-item,
  .experience-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .education-item:not(:last-child)::after,
  .experience-item:not(:last-child)::after {
    display: none;
  }
  
  .education-year,
  .experience-year {
    align-self: center;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .ceo-bio-container {
    padding: 0 1rem;
  }
  
  .ceo-hero {
    padding: 2.5rem 1.5rem;
  }
  
  .ceo-name {
    font-size: 2rem;
  }
  
  .ceo-title {
    font-size: 1.125rem;
  }
  
  .ceo-intro {
    font-size: 1rem;
  }
  
  .ceo-section {
    padding: 2rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .philosophy-text {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .certification-item {
    padding: 1.25rem;
  }
  
  .education-year,
  .experience-year {
    width: 100px;
    height: 50px;
    font-size: 0.9rem;
  }
  
  .back-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  /* Navbar responsive styles */
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar.shrink {
    padding: 0.6rem 1rem;
  }
  
  .nav-links {
    width: 100%;
    right: -100%;
    padding: 5rem 1.5rem 2rem;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 0.875rem 0;
  }
  
  .hamburger-menu {
    width: 28px;
    height: 22px;
  }
  
  .hamburger-line {
    height: 2.5px;
  }
  
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9.75px) rotate(45deg);
  }
  
  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.75px) rotate(-45deg);
  }
  
  .logo img {
    height: 32px;
    margin-right: 10px;
  }
  
  .navbar.shrink .logo img {
    height: 26px;
  }
  
  .logo-text {
    font-size: 1.125rem;
  }
  
  .navbar.shrink .logo-text {
    font-size: 1rem;
  }
}

/* Hero Inner Wrapper for vertical alignment */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 40px; /* Extra space below navbar */
}

.hero-content {
  margin-top: 2.5rem;
}

@media (max-width: 1024px) {
  .hero-inner {
    padding-top: 30px;
  }
  .hero-content {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding-top: 20px;
  }
  .hero-content {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-top: 10px;
  }
  .hero-content {
    margin-top: 1rem;
    padding: 1rem;
    max-width: 100%;
  }
}

/* Mission Vision Values Page Styles */
.mission-content,
.vision-content,
.values-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-content:hover,
.vision-content:hover,
.values-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(15, 152, 51, 0.1);
}

.section-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin: 0;
  line-height: 1.2;
}

.mission-content p,
.vision-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  font-weight: 400;
  margin: 0;
}

.values-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.value-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Active Navigation Link */
.nav-links a.active {
  color: var(--green);
  position: relative;
}

.nav-links a.active::after {
  width: 100%;
}

/* Responsive Design for Mission Vision Values */
@media (max-width: 1024px) {
  .mission-content,
  .vision-content,
  .values-content {
    padding: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .mission-content p,
  .vision-content p {
    font-size: 1.125rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mission-content,
  .vision-content,
  .values-content {
    padding: 2rem;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .section-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .mission-content p,
  .vision-content p {
    font-size: 1rem;
  }
  
  .values-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 1.5rem;
  }
  
  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .value-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .mission-content,
  .vision-content,
  .values-content {
    padding: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-icon {
    width: 45px;
    height: 55px;
    font-size: 1.75rem;
  }
  
  .mission-content p,
  .vision-content p {
    font-size: 0.95rem;
  }
  
  .values-intro {
    font-size: 0.95rem;
  }
  
  .value-card {
    padding: 1.25rem;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  .value-card h3 {
    font-size: 1.125rem;
  }
  
  .value-card p {
    font-size: 0.9rem;
  }
}

/* Sub-Services Grid for Big Services Pages */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.sub-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sub-service-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.sub-service-link:hover::before {
  transform: scaleY(1);
}

.sub-service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sub-service-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.sub-service-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  transition: color 0.3s ease;
  flex: 1;
}

.sub-service-arrow {
  font-size: 1.25rem;
  color: var(--green);
  font-weight: 700;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.sub-service-link:hover .sub-service-arrow {
  transform: translateX(5px);
  color: #0d7a2a;
  opacity: 1;
}

.sub-service-link:hover .sub-service-text {
  color: var(--green);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Back Link Section */
.back-link-section {
  text-align: center;
  margin: 3rem 0;
}

.back-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 152, 51, 0.3);
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(15, 152, 51, 0.4);
}

/* Active Navigation Link for Sidebar */
.quick-links a.active {
  color: var(--green);
  border-left-color: var(--green);
  background-color: rgba(15, 152, 51, 0.05);
  padding-left: 1.25rem;
}

/* Responsive Design for New Elements */
@media (max-width: 1024px) {
  .sub-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .sub-service-link {
    padding: 1.25rem;
  }
  
  .sub-service-text {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 1.5rem;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .benefit-item h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .sub-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sub-service-link {
    padding: 1rem;
  }
  
  .sub-service-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
  }
  
  .sub-service-text {
    font-size: 1rem;
  }
  
  .sub-service-arrow {
    font-size: 1.125rem;
  }
  
  .benefit-item {
    padding: 1.25rem;
  }
  
  .benefit-icon {
    font-size: 2rem;
  }
  
  .benefit-item h3 {
    font-size: 1.125rem;
  }
  
  .benefit-item p {
    font-size: 0.9rem;
  }
  
  .back-btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .sub-service-link {
    padding: 0.875rem;
  }
  
  .sub-service-icon {
    font-size: 1.125rem;
    margin-right: 0.5rem;
  }
  
  .sub-service-text {
    font-size: 0.95rem;
  }
  
  .sub-service-arrow {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  .benefit-icon {
    font-size: 1.75rem;
  }
  
  .benefit-item h3 {
    font-size: 1rem;
  }
  
  .benefit-item p {
    font-size: 0.85rem;
  }
  
  .back-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Newsletter Page Styles */
.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.newsletter-section {
  background: white;
  border-radius: 20px;
  padding: 4rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.newsletter-benefits .benefit-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.newsletter-benefits .benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.newsletter-benefits .benefit-item:hover::before {
  transform: scaleX(1);
}

.newsletter-benefits .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.newsletter-benefits .benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.newsletter-benefits .benefit-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletter-benefits .benefit-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Subscription Form */
.subscription-form-container {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 152, 51, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-help {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
  font-style: italic;
}

.newsletter-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.newsletter-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-text {
  transition: all 0.3s ease;
}

.btn-icon {
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.newsletter-btn:hover:not(:disabled) .btn-icon {
  transform: translateX(5px);
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid #22c55e;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.success-message h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.success-message p {
  font-size: 1.125rem;
  color: #15803d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Newsletter */
@media (max-width: 1024px) {
  .newsletter-container {
    padding: 0 1.5rem;
  }
  
  .newsletter-section {
    padding: 3rem;
  }
  
  .newsletter-content h2 {
    font-size: 2.25rem;
  }
  
  .newsletter-description {
    font-size: 1.125rem;
  }
  
  .newsletter-benefits {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .newsletter-form {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .newsletter-container {
    padding: 0 1rem;
  }
  
  .newsletter-section {
    padding: 2rem;
  }
  
  .newsletter-content h2 {
    font-size: 2rem;
  }
  
  .newsletter-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-benefits .benefit-item {
    padding: 1.5rem;
  }
  
  .newsletter-benefits .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .newsletter-benefits .benefit-item h3 {
    font-size: 1.25rem;
  }
  
  .newsletter-form {
    padding: 2rem;
  }
  
  .form-label {
    font-size: 1rem;
  }
  
  .form-input {
    padding: 0.875rem 1.25rem;
  }
  
  .newsletter-btn {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
  
  .success-message {
    padding: 2rem;
  }
  
  .success-icon {
    font-size: 3rem;
  }
  
  .success-message h3 {
    font-size: 1.75rem;
  }
  
  .success-message p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .newsletter-container {
    padding: 0 0.75rem;
  }
  
  .newsletter-section {
    padding: 1.5rem;
  }
  
  .newsletter-content h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-description {
    font-size: 0.95rem;
  }
  
  .newsletter-benefits .benefit-item {
    padding: 1.25rem;
  }
  
  .newsletter-benefits .benefit-icon {
    font-size: 2rem;
  }
  
  .newsletter-benefits .benefit-item h3 {
    font-size: 1.125rem;
  }
  
  .newsletter-benefits .benefit-item p {
    font-size: 0.9rem;
  }
  
  .newsletter-form {
    padding: 1.5rem;
  }
  
  .form-input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .newsletter-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .success-message {
    padding: 1.5rem;
  }
  
  .success-icon {
    font-size: 2.5rem;
  }
  
  .success-message h3 {
    font-size: 1.5rem;
  }
  
  .success-message p {
    font-size: 0.95rem;
  }
}

/* Research Paper Page Styles */
.research-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.research-paper {
  background: white;
  border-radius: 20px;
  padding: 4rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  color: #2d3748;
}

/* Paper Header */
.paper-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}

.paper-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.paper-category,
.paper-date,
.paper-author {
  background: linear-gradient(135deg, var(--green), #0d7a2a);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.paper-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.paper-abstract {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

/* Table of Contents */
.table-of-contents {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}

.table-of-contents h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.table-of-contents ul {
  list-style: none;
  padding: 0;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.table-of-contents a:hover {
  color: #0d7a2a;
  text-decoration: underline;
}

/* Paper Sections */
.paper-section {
  margin-bottom: 3rem;
}

.paper-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.paper-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  margin: 2rem 0 1rem 0;
}

.paper-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 1.5rem 0 0.75rem 0;
}

.paper-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.paper-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.paper-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Key Statistics */
.key-statistics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.method-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.method-item h4 {
  color: var(--green);
  margin-bottom: 0.75rem;
}

.method-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Findings Grid */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.finding-item {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: transform 0.3s ease;
}

.finding-item:hover {
  transform: translateY(-3px);
}

.finding-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.finding-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.finding-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Trends List */
.trends-list {
  margin: 2rem 0;
}

.trend-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid var(--green);
}

.trend-item h4 {
  color: var(--green);
  margin-bottom: 0.75rem;
}

.trend-item p {
  margin: 0;
}

/* Implications Grid */
.implications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.implication-item {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.implication-item h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.implication-item ul {
  margin: 0;
  padding-left: 1.25rem;
}

.implication-item li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Case Studies */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.case-study {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.case-study h3 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.case-study p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.case-study strong {
  color: var(--dark-text);
}

/* Recommendations */
.recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.recommendation-item {
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.recommendation-item h4 {
  color: var(--green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.recommendation-item ul {
  margin: 0;
  padding-left: 1.25rem;
}

.recommendation-item li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Conclusion Statement */
.conclusion-statement {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #22c55e;
  margin: 2rem 0;
  text-align: center;
}

.conclusion-statement p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #166534;
  margin: 0;
  font-style: italic;
}

/* References */
.references-list p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #64748b;
  padding-left: 1rem;
  border-left: 3px solid #e2e8f0;
}

/* Responsive Design for Research Paper */
@media (max-width: 1024px) {
  .research-container {
    padding: 0 1.5rem;
  }
  
  .research-paper {
    padding: 3rem;
  }
  
  .paper-title {
    font-size: 2.25rem;
  }
  
  .paper-abstract {
    font-size: 1rem;
  }
  
  .key-statistics {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
  
  .findings-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .implications-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .research-container {
    padding: 0 1rem;
  }
  
  .research-paper {
    padding: 2rem;
  }
  
  .paper-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .paper-title {
    font-size: 2rem;
  }
  
  .paper-abstract {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .table-of-contents {
    padding: 1.5rem;
  }
  
  .paper-section h2 {
    font-size: 1.75rem;
  }
  
  .paper-section h3 {
    font-size: 1.25rem;
  }
  
  .key-statistics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .findings-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .implications-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .recommendations-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .finding-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .research-container {
    padding: 0 0.75rem;
  }
  
  .research-paper {
    padding: 1.5rem;
  }
  
  .paper-title {
    font-size: 1.75rem;
  }
  
  .paper-abstract {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  .table-of-contents {
    padding: 1rem;
  }
  
  .paper-section h2 {
    font-size: 1.5rem;
  }
  
  .paper-section h3 {
    font-size: 1.125rem;
  }
  
  .paper-section h4 {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .finding-icon {
    font-size: 2rem;
  }
  
  .finding-item h3 {
    font-size: 1.125rem;
  }
  
  .implication-item h3,
  .case-study h3,
  .recommendation-item h4 {
    font-size: 1.125rem;
  }
  
  .conclusion-statement {
    padding: 1.5rem;
  }
  
  .conclusion-statement p {
    font-size: 1rem;
  }
}

/* --- Newsletter Form Compact Fix --- */
.newsletter-form .form-group {
  padding: 0.1rem 0.25rem;
  min-height: unset;
}
.newsletter-form input {
  padding: 0.6rem 1rem;
  font-size: 0.97rem;
  border-radius: 8px 0 0 8px;
}
.newsletter-form button {
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border-radius: 0 8px 8px 0;
}
@media (max-width: 768px) {
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 8px;
  }
}

/* --- Force newsletter section and form to be very compact --- */
.footer-newsletter {
  padding: 0.5rem 0.5rem 0.2rem 0.5rem !important;
  margin-bottom: 0.5rem !important;
  border-radius: 6px !important;
}
.newsletter-content h4 {
  margin-bottom: 0.1rem !important;
  font-size: 1rem !important;
}
.newsletter-content p {
  margin-bottom: 0.3rem !important;
  font-size: 0.85rem !important;
}
.newsletter-form .form-group {
  padding: 0 !important;
  min-height: unset !important;
}
.newsletter-form input {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.85rem !important;
  border-radius: 4px 0 0 4px !important;
  height: 32px !important;
}
.newsletter-form button {
  padding: 0.25rem 0.5rem !important;
  font-size: 0.9rem !important;
  border-radius: 0 4px 4px 0 !important;
  height: 32px !important;
}
@media (max-width: 768px) {
  .footer-newsletter {
    padding: 0.3rem 0.2rem 0.1rem 0.2rem !important;
    margin-bottom: 0.3rem !important;
    border-radius: 4px !important;
  }
  .newsletter-form input,
  .newsletter-form button {
    border-radius: 4px !important;
    height: 32px !important;
  }
}

/* --- Newsletter input dark background fix --- */
.newsletter-form input {
  background: #181c23 !important;
  color: #e0e0e0 !important;
  border: 1px solid #232733 !important;
}
.newsletter-form input::placeholder {
  color: #8a94a6 !important;
  opacity: 1 !important;
}

/* --- Newsletter form professional alignment fix --- */
.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(15, 152, 51, 0.08) 0%, rgba(15, 152, 51, 0.03) 100%) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.newsletter-form {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.5rem 0;
}
.newsletter-form .form-group {
  display: flex;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 0;
}
.newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: #181c23 !important;
  color: #e0e0e0 !important;
  border: 1px solid #232733 !important;
  border-radius: 6px 0 0 6px !important;
  height: 36px !important;
  font-size: 0.95rem !important;
  margin: 0;
}
.newsletter-form button {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0 !important;
  height: 36px !important;
  min-width: 44px;
  font-size: 1.1rem;
  padding: 0 1rem;
  margin: 0;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #0d7a2a;
}
@media (max-width: 600px) {
  .newsletter-form .form-group {
    max-width: 100%;
  }
  .newsletter-form input,
  .newsletter-form button {
    height: 32px !important;
    font-size: 0.95rem !important;
  }
}

/* --- Remove white/beige background from newsletter area --- */
.footer-newsletter {
  background: none !important;
  box-shadow: none !important;
}
.newsletter-form .form-group {
  background: none !important;
  border: none !important;
}

/* --- Modern Footer Newsletter Section --- */
.newsletter-form-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  padding: 0.5rem 0 0.2rem 0;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-align: center;
}
.newsletter-row {
  display: flex;
  width: 100%;
  gap: 0;
  margin-bottom: 0.3rem;
}
.newsletter-form-modern input[type="email"] {
  flex: 1 1 auto;
  background: #181c23;
  color: #e0e0e0;
  border: 1px solid #232733;
  border-radius: 6px 0 0 6px;
  height: 38px;
  font-size: 1rem;
  padding: 0 1rem;
  outline: none;
  transition: border 0.2s;
}
.newsletter-form-modern input[type="email"]:focus {
  border-color: var(--green);
}
.newsletter-form-modern input[type="email"]::placeholder {
  color: #8a94a6;
  opacity: 1;
}
.newsletter-form-modern button {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
  height: 38px;
  min-width: 44px;
  font-size: 1.1rem;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form-modern button:hover {
  background: #0d7a2a;
}
.newsletter-help {
  color: #8a94a6;
  font-size: 0.85rem;
  margin-top: 0.1rem;
  text-align: center;
}
@media (max-width: 600px) {
  .newsletter-form-modern {
    max-width: 100%;
    padding: 0.2rem 0 0.1rem 0;
  }
  .newsletter-row {
    flex-direction: row;
  }
  .newsletter-form-modern input[type="email"],
  .newsletter-form-modern button {
    height: 32px;
    font-size: 0.97rem;
  }
}
