  
.hero-section {
  padding: 60px 20px;
  text-align: center;
}

.hero-title {
  color: #235000;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.hero-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-box {
  width: 70%;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.3rem;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease forwards;
}

.hero-box.right {
  align-self: flex-end;
  text-align: right;
  background-color: #f0f8f0;
}

.hero-box.left {
  align-self: flex-start;
  background-color: #e9fbe9;
}

.hero-box:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-box:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-box:nth-child(3) {
  animation-delay: 0.6s;
}
.hero-box:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.smart-saving-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.smart-saving-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.smart-saving-text {
  max-width: 600px;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #1c1c1c;
}

.smart-saving-text h2 {
    
  font-size: 2.5rem;
  color: #235000;
  margin-bottom: 1.5rem;
}

.smart-saving-image {
  width: 400px;
  max-width: 90vw;
  animation: floatImage 6s ease-in-out infinite;
}

.smart-saving-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  clip-path: polygon(20% 0%, 100% 10%, 85% 100%, 0% 90%);
  transition: transform 0.4s ease;
}

.smart-saving-image img:hover {
  transform: scale(1.03) rotate(1deg);
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}




.tips-section {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 coloane fixe */
  grid-template-rows: repeat(2, auto);  /* 2 rânduri */
  gap: 30px;
  justify-items: center;
}

.tip-card {
  background: #EAF4E9; /* fundal verde deschis */
  border: 1px solid #d3e6d1;
  border-radius: 15px;
  padding: 20px;
  transition: 0.3s ease;
  text-align: center;
  width: 100%; /* se extinde complet în grid */
  max-width: 340px;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-card .icon-style {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.tip-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}





.crisis-section {
  padding: 60px 20px;
  text-align: center;
}

.crisis-section h2{
    color: #235000;
}

#carousel-container {
  background: #fff;
  padding: 30px;
  border: 1px solid #4CAF50;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  border-radius: 25px;
  max-width: 900px;
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;
}

  .carousel-slide {
    min-height: 160px;
      display: none;
  transition: all 0.5s ease-in-out;
  }

.carousel-slide.active {
  display: block;
}

.carousel-btn {
  margin: 10px;
  padding: 10px 25px;
  width: 10rem;
  background-color: green; 
  color: white; 
  border: none;
  border-radius: 10px;
  font-style: italic;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  user-select: none;
  outline: none;
}

.carousel-btn:hover {
  background-color: #2ea600; /* culoare mai închisă la hover */
  color: white; /* păstrăm textul alb */
}

.carousel-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
    align-items: center;
}





.sustainable-options {
  padding: 60px 0;
  font-family: 'Inter', sans-serif;
  text-align: center;
  border-radius: 50px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sustainable-options h2 {
  color: #235000;
  font-size: 36px;
  margin-bottom: 10px;
}

.sustainable-options .intro {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 coloane */
  gap: 30px;
  margin-bottom: 50px;
}

.option-card {
  background: linear-gradient(to bottom, #e6f4e6 0%, #ffffff 100%);
  border: 1px solid #e0e0e0;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.option-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  object-fit: contain;
}

.option-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.option-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}




.support-section {
  background: linear-gradient(135deg, #E6F4EC, #F1FFF4);
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
  padding: 60px 20px 120px; /* extra padding bottom pentru formă */
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  clip-path: path('M0,0 H100% V90 Q50% 120 0 90 Z'); /* alternativă rapidă */
}

 .username {
  font-family: monospace;
  background-color: #F0FAF5;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.username:hover {
  box-shadow: 0 0 10px rgba(50, 200, 120, 0.6);
  transform: scale(1.03);
}

/* Container general (rămâne la fel) */

.support-container {
  background: #fff;
  padding: 40px;
  border-radius: 60px 60px 50px 50px;
  box-shadow: 0 8px 24px rgba(85, 200, 120, 0.15);
  max-width: 600px;
  text-align: center;
  border: 2px solid #B6E2C8;
}

/* Alte stiluri neschimbate */
.support-container h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #1E3D32;
}

.support-container p {
  color: #444;
  margin-bottom: 20px;
}

.support-method {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.support-info h3 {
  margin: 0 0 10px;
  font-size: 1.3em;
  color: #155e4b;
}

/* 🌈 Gradient Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive */
@media (max-width: 768px) {
    
  .hero-paragraphs {
  width: 100%;
  }

.hero-box {
  width: 100%;
  text-align: left !important;
  align-self: center !important;
  animation: none;
  opacity: 1;
  transform: none;
}

  .carousel-controls {
    flex-direction: column;
      justify-content: center;
        align-items: center;
  flex-wrap: wrap;
    gap: 10px;
  }
  
    .carousel-btn {
    width: 100%;
    max-width: 240px;
    font-size: 1rem;
    padding: 12px;
    transition: none;
  }
    
    .tips-section {
    grid-template-columns: 1fr;
    padding: 40px 10px;
  }
  
  .smart-saving-section {
    flex-direction: column;
    text-align: center;
  }

  .tip-card {
    padding: 25px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .smart-saving-text h2 {
    font-size: 1.5rem;
  }

  .support-container {
    padding: 30px;
  }
  
    .options-grid {
    grid-template-columns: 1fr;
  }
  
    .container,
  .smart-saving-container,
  .hero-section,
  .support-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
    .smart-saving-image {
    animation: none;
  }
    .smart-saving-image img {
    aspect-ratio: 1.56; /* Forțează proporțiile naturale (800x514) */
    object-fit: cover; /* Previne întinderea */
    height: auto !important; /* Anulează orice înălțime fixă */
  }
    .smart-saving-image img {
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
  }
  
    .option-card img {
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
  }
  
}