/* === Sustainability Section Styles === */

.sustainability-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Arial', sans-serif;
}

.container-sustainability {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sustainability-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333333;
}

/* Box Container */
.circle-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Each Rectangle Box */
.circle-box {
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.circle-box:hover {
  transform: translateY(-5px);
}



/* Rectangle Image */
.circle-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  margin-bottom: 15px;
  display: block;
}

/* Box Titles */
.circle-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Box Text */
.circle-box p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* Footer Paragraph */
.container-sustainability > p {
  margin-top: 40px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

/* === Responsive Styles === */

@media (max-width: 992px) {
  .circle-boxes {
    justify-content: center;
  }

  .circle-box {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .sustainability-section h2 {
    font-size: 26px;
  }

  .circle-box {
    max-width: 100%;
  }

  .circle-box h3 {
    font-size: 18px;
  }

  .circle-box p {
    font-size: 13px;
  }

  .container-sustainability > p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
    padding: 40px 15px;
  }

  .circle-box {
    padding: 15px;
  }

  .circle-box h3 {
    font-size: 16px;
  }

  .circle-box p {
    font-size: 12.5px;
  }

  .sustainability-section h2 {
    font-size: 22px;
  }
}
