@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Space+Mono&family=Orbitron:wght@400;500;700&display=swap');

:root {
  --primary-color: #27AE60;  /* Keep green for accents */
  --secondary-color: #2ECC71;
  --accent-color: #16A085;
  --renewable-green: #27AE60;
  --solar-yellow: #F1C40F;
  --wind-blue: #3498DB;
  --background-color: #1A1A1A;  /* Very dark background */
  --text-color: #FFFFFF;  /* Pure white text for maximum contrast */
  --card-bg: #2D2D2D;  /* Lighter than background */
  --header-bg: #242424;  /* Distinct from background */
  --tech-glow: 0 0 20px rgba(39, 174, 96, 0.3);
  --border-color: #404040;  /* Visible border */
  --section-bg: #1E1E1E;  /* Slightly lighter than background */
  --footer-bg: #242424;  /* Matching header */
  --energy-gradient: linear-gradient(135deg, var(--renewable-green), var(--accent-color));
  --solar-gradient: linear-gradient(135deg, var(--solar-yellow), #E67E22);
  --wind-gradient: linear-gradient(135deg, var(--wind-blue), #2980B9);
  --leaf-pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0c16.569 0 30 13.431 30 30 0 16.569-13.431 30-30 30C13.431 60 0 46.569 0 30 0 13.431 13.431 0 30 0zm0 5C16.215 5 5 16.215 5 30c0 13.785 11.215 25 25 25s25-11.215 25-25C55 16.215 43.785 5 30 5z' fill='%2327AE60' fill-opacity='0.05'/%3E%3C/svg%3E");
}

/* Add these at the beginning of the file, after the root variables */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--primary-color);
  }
  50% {
    box-shadow: 0 0 20px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 5px var(--primary-color);
  }
}

/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 1s ease-out forwards;
}

.animate-float {
  animation: float 15s infinite linear;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--background-color);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(150, 150, 150, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(150, 150, 150, 0.15) 0%, transparent 50%),
    linear-gradient(45deg, rgba(26, 26, 26, 0.95), rgba(30, 30, 30, 0.95));
  z-index: -1;
}

@keyframes backgroundShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Add floating bubbles */
.bubble {
  position: fixed;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.1);
  pointer-events: none;
  z-index: -1;
  animation: float 15s infinite linear;
}

/* Header section */
header {
  background: linear-gradient(to bottom, var(--header-bg), rgba(36, 36, 36, 0.95));
  padding: 4rem 0;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 2px 15px rgba(39, 174, 96, 0.1);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 157, 0.1), rgba(0, 184, 255, 0.1));
  z-index: -1;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--tech-glow);
  position: relative;
  animation: fadeIn 1s ease-out forwards;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.tagline {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  color: var(--text-color);
  opacity: 0.8;
  letter-spacing: 1px;
  animation: slideInLeft 1s ease-out 0.5s forwards;
}

/* Typewriter effect */
.typewriter {
  overflow: hidden;
  border-right: .15em solid #64ffda;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #64ffda; }
}

/* About section styles */
.about {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.about p {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.about .btn {
  margin-top: 20px;
  display: inline-block;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  gap: 0.5rem;
}

.btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
  transform: translateY(-2px);
}

/* Container to wrap content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background: transparent;
}

/* Section styles */
section {
  padding: 6rem 0;
  background: var(--section-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #64ffda, transparent);
}

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

/* Service card styles */
.service {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--energy-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service:hover::before {
  opacity: 1;
}

.service:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  margin-right: 1rem;
  align-self: flex-start;
}

.service-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  margin-top: 1rem;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
}

/* Call-to-action section */
.cta {
  background: linear-gradient(135deg, #121212, #1A1A1A);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta .btn {
  background-color: #d8cfc1;
  color: #6e72be;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.cta .btn:hover {
  background-color: #d7d5c6;
  color: #2B1F0E;
}

/* Terminal text effect */
.terminal {
  font-family: 'Space Mono', monospace;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-shadow: var(--tech-glow);
}

.terminal::after {
  content: '|';
  animation: blink 1s infinite;
}

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

/* Footer styles */
footer {
  background: var(--footer-bg);
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
  border-top: 2px solid var(--border-color);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--energy-gradient);
}

/* Highlight effect */
.highlight {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight:hover {
  background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
  box-shadow: 0 6px 20px rgba(255, 62, 157, 0.4);
}

/* NASA-inspired grid lines */
.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(150, 150, 150, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 150, 150, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.2;
}

/* Add animation to services */
.service:nth-child(1) { animation: fadeIn 1s ease-out 0.2s forwards; }
.service:nth-child(2) { animation: fadeIn 1s ease-out 0.4s forwards; }
.service:nth-child(3) { animation: fadeIn 1s ease-out 0.6s forwards; }
.service:nth-child(4) { animation: fadeIn 1s ease-out 0.8s forwards; }

/* Add animation to CTA section */
.cta h2 {
  animation: slideInRight 1s ease-out forwards;
}

/* Responsive header */
header {
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

/* Responsive service cards */
.service {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.service-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

/* Responsive sections */
section {
  padding: 3rem 0;
}

section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

/* Responsive buttons */
.btn {
  padding: 0.8rem 1.5rem;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

/* Responsive CTA section */
.cta {
  padding: 4rem 0;
}

.cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

/* Responsive footer */
footer {
  padding: 2rem 0;
  font-size: clamp(0.8rem, 1vw, 1rem);
}

/* Mobile menu for small screens */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  header {
    padding: 1.5rem 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service {
    padding: 1.2rem;
  }

  section {
    padding: 4rem 0;
  }

  .service-detail {
    padding: 1.5rem;
  }

  .tech-specs, .system-types, .battery-stats, .solar-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Tablet and medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

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

  .tech-specs, .system-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens */
@media (min-width: 1025px) {
  .container {
    padding: 0 40px;
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .service:hover, .btn:hover, .service-detail:hover, .system-card:hover {
    transform: none;
  }
}

/* Landscape mode optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  header {
    padding: 1rem 0;
  }

  section {
    padding: 1.5rem 0;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon {
    transform: scale(1.1);
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1a1a1a;
    --card-bg: rgba(30, 30, 30, 0.8);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Update service detail cards */
.service-detail {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: right;
}

.service-detail h2 {
  text-align: right;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: auto;
  padding-right: 1rem;
}

.service-detail h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60px;
  height: 4px;
  background: var(--energy-gradient);
  border-radius: 2px;
}

/* Update service icon alignment */
.service-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 1.5rem auto;
  font-size: 2.5rem;
  color: var(--renewable-green);
}

/* Update service content alignment */
.service-content {
  text-align: right;
  max-width: 800px;
  margin-left: auto;
}

/* Update feature list alignment */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  justify-content: flex-end;
}

.feature-list li {
  text-align: right;
  padding-right: 2.5rem;
  padding-left: 0;
}

.feature-list li::before {
  right: 0;
  left: auto;
}

/* Update system types alignment */
.system-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 2rem auto;
  max-width: 1000px;
  justify-content: flex-end;
}

/* Update stat cards alignment */
.solar-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2rem auto;
  max-width: 900px;
  justify-content: flex-end;
}

/* Update stat cards */
.stat-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--energy-gradient);
}

/* Update system cards */
.system-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.system-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--energy-gradient);
}

/* Add energy-themed decorative elements */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 4rem;
  text-align: center;
  width: 100%;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

/* Add energy-themed animations */
@keyframes energyPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.energy-pulse {
  animation: energyPulse 2s infinite;
}

/* Add responsive energy-themed elements */
@media (min-width: 768px) {
  .service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  .system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
}

/* Add leaf animation */
@keyframes leafFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.leaf-icon {
  animation: leafFloat 3s infinite ease-in-out;
}

/* Update services section heading */
.services-section {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--energy-gradient);
  border-radius: 2px;
}

/* Update services section container */
#services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#services h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--energy-gradient);
  border-radius: 2px;
}

/* Update services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: center;
}

/* Update service cards */
.service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #services {
    padding: 3rem 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

/* Add specific styling for Electrical Services header */
h2:contains("Electrical Services") {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* Update services section heading */
.services-section h2 {
  text-align: center;
  width: 100%;
  margin: 0 auto 3rem;
  display: block;
  position: relative;
}

.services-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}

/* Update services title styling */
.services-title {
  text-align: center;
  width: 100%;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.5rem;
  color: var(--text-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-title::before {
  content: '&';
  position: absolute;
  left: 25%; /* Position the & symbol at 25% from the left */
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.7;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 2px 4px rgba(39, 174, 96, 0.3);
}
