.btn-primary:hover,
.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-outline-primary,
.counter i,
.navbar-brand i,
.vision-list i {
  color: var(--primary-green);
}

.btn,
.eco-card,
.navbar,
.project-card {
  transition: 0.3s;
}

.counter-animate,
.ocean-title,
.section-title,
.solar-title {
  -webkit-text-fill-color: transparent;
}

.footer-links a,
.social-icon-large,
.toc-link,
a {
  text-decoration: none;
}

.product-img {
  width: 100%;
}

:root {
  --primary-green: #2e8b57;
  --secondary-green: #3cb371;
  --light-green: #90ee90;
  --dark-green: #1e5631;
  --earth-brown: #8b4513;
  --earth-tan: #d2b48c;
  --earth-yellow: #f4e04d;
  --sky-blue: #87ceeb;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --light-gray: #e8f5e9;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow: rgba(46, 139, 87, 0.15);
  --gradient-primary: linear-gradient(135deg,
      var(--primary-green),
      var(--secondary-green));
  --gradient-earth: linear-gradient(135deg,
      var(--earth-brown),
      var(--earth-tan));
}

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

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: inherit;
}

.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--dark-green);
}

.btn-success {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
}

.btn-success:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-outline-primary,
.btn-outline-primary:hover {
  border-color: var(--primary-green);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-outline-primary:hover,
.leaf {
  background-color: var(--primary-green);
}

.section-title {
  font-size: 1.1rem;
  color: var(--dark-green);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.leaf-loader {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50% 0;
  animation: 2s ease-in-out infinite leaf-float;
}

.leaf1 {
  top: 0;
  left: 30px;
  animation-delay: 0s;
}

.leaf2 {
  top: 30px;
  right: 0;
  animation-delay: 0.5s;
  background-color: var(--secondary-green);
}

.leaf3 {
  bottom: 0;
  left: 30px;
  animation-delay: 1s;
  background-color: var(--light-green);
}

.leaf4 {
  top: 30px;
  left: 0;
  animation-delay: 1.5s;
  background-color: var(--earth-brown);
}

@keyframes leaf-float {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

#preloader p {
  font-size: 1.2rem;
  color: var(--dark-green);
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green) !important;
}

.eco-icon,
.hero-section {
  display: flex;
  color: var(--white);
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 16px !important;
  border-radius: 50px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  background: var(--gradient-primary);
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  position: relative;
  background-image: url(../images/bg.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(30, 86, 49, 0.8),
      rgba(46, 139, 87, 0.6));
  z-index: 1;
}

.cta-section,
.progress-bar {
  position: relative;
}

.about-section,
.contact-section,
.eco-card,
.projects-section {
  background-color: var(--white);
}

.cta-section .container,
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .highlight {
  color: var(--earth-yellow);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.eco-card {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--primary-green);
}

.counter:hover,
.eco-card:hover,
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow);
}

.eco-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
}

.progress,
.progress-bar {
  border-radius: 10px;
  overflow: visible;
}

.progress-bar::after,
.project-link {
  color: var(--primary-green);
  font-weight: 600;
}

.eco-card h4,
.project-content h4 {
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.impact-section,
.mission-section {
  background-color: var(--light-gray);
}

.mission-progress h5 {
  color: var(--dark-green);
  margin-bottom: 8px;
}

.progress {
  height: 20px;
  background-color: rgba(46, 139, 87, 0.1);
}

.progress-bar,
.social-icon:hover {
  background: var(--gradient-primary);
}

.counter,
.project-card,
.vision-card {
  background-color: var(--white);
}

.cta-section,
.project-img {
  background-size: cover;
  background-position: center;
}

.contact-info,
.counter,
.project-card,
.vision-card {
  border-radius: 15px;
}

.progress-bar::after {
  content: attr(aria-valuenow) "%";
  position: absolute;
  right: 10px;
  top: -25px;
  font-size: 0.9rem;
}

.vision-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.vision-list {
  list-style: none;
  padding-left: 0;
}

.vision-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-light);
}

.vision-list li:last-child {
  border-bottom: none;
}

.project-card {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: auto;
}

.project-img {
  height: 250px;
  transition: 0.5s;
}

.blog-card:hover .blog-card-img,
.gallery-item:hover,
.project-card:hover .project-img {
  transform: scale(1.05);
}

.contact-info {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact-form,
.counter {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.project-link {
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}

.project-link:hover {
  color: var(--dark-green);
  transform: translateX(5px);
}

.counter {
  padding: 30px 20px;
  transition: 0.3s;
}

.counter h3 {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin: 15px 0;
}

.counter p {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-section {
  background-image: url(../images/cta.jpeg);
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(30, 86, 49, 0.85),
      rgba(139, 69, 19, 0.7));
  z-index: 1;
}

.contact-form,
.social-icon {
  background-color: var(--light-gray);
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.h5,
h5 {
  font-size: 1.15rem;
}

.contact-info h4 {
  color: var(--dark-green);
  margin-bottom: 2rem;
}

.info-item i,
.social-icon {
  color: var(--primary-green);
}

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  margin-top: 5px;
}

.info-item h5 {
  color: var(--dark-green);
  margin-bottom: 5px;
}

.social-links {
  margin-top: 2rem;
}

.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.contact-form {
  padding: 40px;
  border-radius: 15px;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.25);
}

.footer {
  background: linear-gradient(135deg, #0f3d2e, #145a32);
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
}

.footer-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff !important;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
}

.footer h5 {
  color: #a9dfbf;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer h5::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #2ecc71;
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2ecc71;
  padding-left: 5px;
}

.subscribe-form .input-group {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  overflow: hidden;
}

.subscribe-form .input-group-text {
  background: 0 0;
  border: none;
  color: #2ecc71;
}

.subscribe-form input {
  background: 0 0;
  border: none;
  color: #fff;
  padding: 12px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-btn {
  background: #2ecc71;
  color: #0f3d2e;
  font-weight: 600;
  border-radius: 30px;
  padding: 0 20px;
}

.subscribe-btn:hover {
  background: #27ae60;
  color: #fff;
}

.subscribe-msg {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #2ecc71;
  color: #0f3d2e;
  transform: translateY(-4px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.scroll-to-top-faq.show,
.scroll-to-top-privacy.show,
.scroll-to-top-terms.show,
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--dark-green);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
}

@media (max-width: 1199px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 30px;
  }

  .counter h3 {
    font-size: 1.4rem;
  }
}

.h4,
h4 {
  font-size: 1.1rem;
}

.h3,
h3 {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }

  .counter h3 {
    font-size: 1.4 rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .btn {
    padding: 10px 25px;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .footer {
    padding: 50px 0 25px;
  }
}

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) center/cover,
    url(../images/photo-1466611653911-95081537e5b7.jpg) center/cover;
}

.story-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-img {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.crew-card:hover,
.team-card:hover {
  transform: translateY(-10px);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  border: 5px solid #e8f5e9;
}

.value-card {
  background: #f9fdf9;
  border-radius: 15px;
  border: 1px solid #e0f2e1;
}

.value-icon {
  font-size: 2.5rem;
  color: #2e7d32;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  background: #2e7d32;
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-year {
  background: #2e7d32;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  z-index: 2;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
}

.timeline-item:nth-child(2n) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
  }

  .timeline-year {
    left: 30px;
    transform: none;
  }
}

.acceptance-section,
.benefit-item,
.blog-post-header,
.contact-card,
.energy-counter,
.no-results,
.plastic-type-item,
.principle-card,
.quick-link-card,
.stats-section {
  text-align: center;
}

.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)) center/cover,
    url(../images/photo-1556761175-5973dc0f32e7.jpg) center/cover;
}

.contact-option-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: 0.3s;
}

.contact-option-card:hover {
  border-color: #2e7d32;
  transform: translateY(-5px);
}

.contact-option-icon {
  font-size: 3rem;
  color: #2e7d32;
  height: 80px;
  width: 80px;
  line-height: 80px;
  margin: 0 auto;
  background: #e8f5e9;
  border-radius: 50%;
}

.blog-sidebar,
.contact-info-wrapper {
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2e7d32;
}

.info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon,
.social-icon-large {
  align-items: center;
  border-radius: 50%;
}

.info-card-header h5 {
  margin: 0;
  font-weight: 600;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #e8f5e9;
  display: flex;
  justify-content: center;
  color: #2e7d32;
}

.social-icon-large {
  display: inline-flex;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  color: #333;
  transition: 0.3s;
  font-size: 1.2rem;
}

.social-icon-large:hover {
  background: #2e7d32;
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-section {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.contact-form-section h3 {
  color: #2e7d32;
  border-bottom: 2px solid #e8f5e9;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.form-control:focus,
.form-select:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-check-input:checked {
  background-color: #2e7d32;
  border-color: #2e7d32;
}

.faq-section {
  background: #f9fdf9;
}

.accordion-button {
  background: #fff;
  font-weight: 500;
  color: #333;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #e8f5e9;
  color: #2e7d32;
}

.accordion-item {
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-body {
  background: #fff;
}

.map-section {
  height: 400px;
  position: relative;
}

.map-wrapper {
  height: 100%;
  width: 100%;
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) center/cover,
    url(../images/photo-1542314831-068cd1dbfeeb.jpg) center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-overlay {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
}

.city-map,
.eco-feature-card {
  padding: 2rem;
  overflow: hidden;
}

.text-success {
  width: 100%;
}

.urban-hero {
  background: linear-gradient(135deg,
      rgba(46, 125, 50, 0.9) 0,
      rgba(56, 142, 60, 0.8) 100%),
    url(../images/Urban.jpeg) center/cover fixed;
  position: relative;
  overflow: hidden;
}

.urban-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover;
  animation: 20s linear infinite wave;
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

.floating-trees {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url(../images/photo-1500382017468-9049fed747ef.jpg) bottom repeat-x;
  opacity: 0.4;
  animation: 30s linear infinite float;
}

.eco-feature-card {
  background: linear-gradient(145deg, #fff, #f0f0f0);
  border-radius: 20px;
  height: 100%;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
  position: relative;
}

.eco-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.data-table th,
.eco-feature-card .feature-icon {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
}

.eco-feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 100, 0, 0.2);
}

.eco-feature-card .feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.circle-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 10;
}

.circle-progress {
  fill: none;
  stroke: #4caf50;
  stroke-width: 10;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s;
}

.circle-value,
.sun-animation {
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-value {
  position: absolute;
  left: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e7d32;
}

.city-map {
  background: linear-gradient(135deg, #f5f5f5 0, #e0f2e9 100%);
  border-radius: 20px;
  position: relative;
}

.map-marker,
.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker:hover {
  transform: scale(1.2);
  z-index: 10;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.cleanup-timeline,
.solar-timeline,
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #4caf50, #8bc34a);
}

.timeline-item,
.timeline-milestone,
.timeline-node {
  position: relative;
  margin-bottom: 3rem;
  width: 45%;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd),
.timeline-milestone:nth-child(odd),
.timeline-node:nth-child(odd) {
  margin-left: auto;
}

.timeline-item:nth-child(2n),
.timeline-milestone:nth-child(2n),
.timeline-node:nth-child(2n) {
  margin-right: auto;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(76, 175, 80, 0.2);
}

.timeline-item:nth-child(odd)::before,
.timeline-milestone:nth-child(odd)::before,
.timeline-node:nth-child(odd)::before {
  left: -35px;
}

.timeline-item:nth-child(2n)::before,
.timeline-milestone:nth-child(2n)::before,
.timeline-node:nth-child(2n)::before {
  right: -35px;
}

.involvement-form {
  background: linear-gradient(135deg, #fff 0, #f9f9f9 100%);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 100, 0, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.form-control {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: 0.3s;
}

.gallery-item,
.hover-lift {
  transition: transform 0.3s;
}

.form-control:focus {
  border-color: #4caf50;
  box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

.section-title {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  -webkit-background-clip: text;
  display: inline-block;
}

.counter-animate {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2e7d32, #8bc34a);
  -webkit-background-clip: text;
  line-height: 1;
}

.hover-lift:hover,
.plastic-type-item:hover {
  transform: translateY(-5px);
}

.btn-tree {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border: none;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-tree:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
  color: #fff;
}

.ocean-hero {
  background: linear-gradient(135deg,
      rgba(0, 105, 148, 0.85) 0,
      rgba(0, 150, 199, 0.8) 100%),
    url(../images/ocean.jpeg) center/cover fixed;
  position: relative;
  overflow: hidden;
}

.ocean-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.3" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,197.3C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover;
  animation: 20s linear infinite waves;
}

.ocean-waves-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23007c91" fill-opacity="0.4" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover;
  animation: 15s linear infinite reverse waves;
}

@keyframes waves {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 2000px bottom;
  }
}

.floating-plastic {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.plastic-item {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: 15s linear infinite float;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.collection-counter,
.impact-visualization,
.ocean-card {
  position: relative;
  overflow: hidden;
}

.plastic-item i {
  color: #007c91;
  font-size: 1.2rem;
}

@keyframes float {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 2000px bottom;
  }
}

.ocean-card {
  background: linear-gradient(145deg, #fff, #f0f7fa);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 10px 30px rgba(0, 124, 145, 0.1);
}

.ocean-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007c91, #00bcd4);
}

.ocean-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 124, 145, 0.2);
}

.ocean-card .ocean-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007c91, #00bcd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(0, 124, 145, 0.3);
}

.collection-counter {
  background: linear-gradient(135deg, #007c91, #00acc1);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.collection-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="%23ffffff" d="M50,25 C25,25 25,50 25,50 C25,50 25,75 50,75 C75,75 75,50 75,50 C75,50 75,25 50,25 Z M50,20 C77,20 80,50 80,50 C80,50 77,80 50,80 C23,80 20,50 20,50 C20,50 23,20 50,20 Z"></path></svg>');
}

.counter-large,
.energy-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plastic-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.plastic-type-item {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.plastic-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
}

.cleanup-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #007c91, #00bcd4);
}

.timeline-node::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #007c91;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 124, 145, 0.2);
}

.impact-visualization {
  background: linear-gradient(135deg, #e0f7fa 0, #b2ebf2 100%);
  border-radius: 20px;
  padding: 2rem;
}

.fish-animation {
  position: absolute;
  width: 50px;
  height: 30px;
  background: linear-gradient(135deg, #007c91, #00bcd4);
  border-radius: 50%;
  animation: 20s linear infinite swim;
}

@keyframes swim {
  0% {
    transform: translateX(-100px) translateY(0);
  }

  25% {
    transform: translateX(25%) translateY(20px);
  }

  50% {
    transform: translateX(50%) translateY(0);
  }

  75% {
    transform: translateX(75%) translateY(20px);
  }

  100% {
    transform: translateX(calc(100% + 100px)) translateY(0);
  }
}

.crew-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.crew-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.btn-ocean,
.ocean-title {
  background: linear-gradient(135deg, #007c91, #00bcd4);
}

.blog-card-content,
.crew-info {
  padding: 1.5rem;
}

.btn-ocean {
  border: none;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 124, 145, 0.4);
}

.btn-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 124, 145, 0.5);
  color: #fff;
}

.ocean-title {
  -webkit-background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}

.plastic-debris {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px 10px 0;
  animation: 30s linear infinite drift;
  opacity: 0.7;
}

@keyframes drift {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0);
  }

  100% {
    transform: translateY(-100px) translateX(200px) rotate(720deg);
  }
}

.text-ocean {
  color: #007c91;
}

.bg-ocean-light {
  background-color: #e0f7fa;
}

.solar-hero {
  background: linear-gradient(135deg,
      rgba(255, 204, 0, 0.85) 0,
      rgba(255, 165, 0, 0.8) 100%),
    url(../images/solar.jpeg) center/cover fixed;
  position: relative;
  overflow: hidden;
}

.sun-animation {
  position: absolute;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, gold, orange);
  border-radius: 50%;
  box-shadow: 0 0 80px 40px rgba(255, 215, 0, 0.6),
    0 0 200px 100px rgba(255, 165, 0, 0.4);
  animation: 3s ease-in-out infinite pulse;
}

.energy-counter::before,
.panel-cell::after,
.solar-card::before,
.solar-grid {
  left: 0;
  position: absolute;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 80px 40px rgba(255, 215, 0, 0.6),
      0 0 200px 100px rgba(255, 165, 0, 0.4);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 120px 60px rgba(255, 215, 0, 0.8),
      0 0 250px 125px rgba(255, 165, 0, 0.6);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.solar-grid {
  bottom: 0;
  right: 0;
  height: 100px;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 50px,
      rgba(0, 0, 0, 0.1) 50px,
      rgba(0, 0, 0, 0.1) 60px),
    linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  animation: 20s linear infinite solarMove;
}

.community-map,
.energy-counter,
.panel-animation,
.panel-cell,
.solar-card {
  position: relative;
  overflow: hidden;
}

@keyframes solarMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 0;
  }
}

.solar-card {
  background: linear-gradient(145deg, #fff, #fafafa);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.solar-card::before {
  content: "";
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, gold, #ff8c00);
}

.energy-counter,
.solar-card .solar-icon {
  background: linear-gradient(135deg, gold, #ff8c00);
  color: #fff;
}

.solar-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.solar-card .solar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.energy-counter {
  border-radius: 20px;
  padding: 2rem;
}

.energy-counter::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="%23ffffff" d="M50,10 L70,50 L50,40 L30,50 Z M50,60 L30,40 L50,50 L70,40 Z"></path></svg>');
}

.panel-animation {
  width: 300px;
  height: 200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.panel-cells {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 2px;
  padding: 10px;
}

.benefits-grid,
.principles-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.panel-cell {
  background: #1a252f;
  height: 40px;
}

.panel-cell::after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 215, 0, 0.3),
      transparent);
  animation: 2s linear infinite solarFlow;
  animation-delay: calc(var(--cell-index) * 0.1s);
}

@keyframes solarFlow {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.benefits-grid {
  display: grid;
  margin-top: 2rem;
}

.benefit-item {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-left: 5px solid gold;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.1);
}

.solar-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, gold, #ff8c00);
}

.timeline-milestone::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: gold;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
}

.solar-calculator {
  background: linear-gradient(135deg, #fffaf0 0, #fff5e6 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.1);
}

.calculator-input {
  background: #fff;
  border: 2px solid gold;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  transition: 0.3s;
}

.calculator-input:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.community-map {
  background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
  border-radius: 20px;
  padding: 2rem;
}

.btn-solar,
.map-marker,
.solar-title {
  background: linear-gradient(135deg, gold, #ff8c00);
}

.map-marker,
.map-marker::after {
  position: absolute;
  border-radius: 50%;
}

.map-marker {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transform: scale(1);
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-marker::after {
  content: "";
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 215, 0, 0.3);
  animation: 2s infinite energyPulse;
}

@keyframes energyPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.btn-solar {
  border: none;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.btn-solar:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
  color: #fff;
}

.solar-title {
  -webkit-background-clip: text;
  display: inline-block;
  margin-bottom: 1rem;
}

.text-solar {
  color: #ff8c00;
}

.bg-solar-light {
  background-color: #fffaf0;
}

.energy-flow {
  position: relative;
  height: 100px;
  overflow: hidden;
  margin: 2rem 0;
}

.energy-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: gold;
  border-radius: 50%;
  animation: 3s linear infinite flow;
  box-shadow: 0 0 10px gold;
}

.data-table,
.principle-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@keyframes flow {
  0% {
    transform: translateX(0) translateY(50px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) translateY(0);
    opacity: 0;
  }
}

.rights-section .text-success {
  width: auto;
}

.privacy-hero {
  background: linear-gradient(135deg,
      rgba(46, 125, 50, 0.9) 0,
      rgba(56, 142, 60, 0.85) 100%),
    url(../images/bg.jpeg) center/cover fixed;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.blog-hero::before,
.faq-hero::before,
.privacy-hero::before,
.terms-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,96C384,107,480,149,576,165.3C672,181,768,171,864,149.3C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover;
  animation: 20s linear infinite wave;
}

.security-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
}

.security-icon {
  position: absolute;
  font-size: 2rem;
  color: #fff;
  animation: 20s linear infinite float;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0);
  }

  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
  }
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.privacy-content,
.terms-content {
  padding: 3rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.principle-icon,
.section-title i {
  font-size: 1.5rem;
}

.privacy-section,
.terms-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e8f5e9;
}

.privacy-section:last-child,
.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-list,
.terms-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.privacy-list li,
.terms-list li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow: hidden;
}

.data-table th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #e8f5e9;
}

.data-table tr:nth-child(2n) {
  background-color: #f8fff9;
}

.data-table tr:hover {
  background-color: #e8f5e9;
}

.principles-grid {
  display: grid;
  margin: 2rem 0;
}

.principle-card {
  background: #fff;
  padding: 1.5rem;
  border-top: 4px solid #4caf50;
  transition: transform 0.3s;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #4caf50;
}

.cookie-banner-example {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 5px solid #4caf50;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rights-section {
  background: linear-gradient(135deg, #f8fff9 0, #e8f5e9 100%);
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
}

@media (max-width: 992px) {
  .contact-info-wrapper {
    position: static;
    margin-bottom: 40px;
  }

  .contact-option-card {
    margin-bottom: 20px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .toc-container {
    position: static;
    margin-bottom: 2rem;
  }

  .principles-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {

  .cleanup-timeline::before,
  .solar-timeline::before,
  .timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-milestone,
  .timeline-node {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }

  .timeline-item::before,
  .timeline-milestone::before,
  .timeline-node::before {
    left: -35px !important;
    right: auto !important;
  }

  .counter-large,
  .energy-value {
    font-size: 3rem;
  }

  .sun-animation {
    width: 150px;
    height: 150px;
  }

  .page-title {
    font-size: 2rem;
  }

  .privacy-content {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media print {

  .back-to-home,
  .contact-card,
  .scroll-to-top-privacy,
  .security-icons,
  .toc-container {
    display: none !important;
  }

  .privacy-content {
    font-size: 12pt;
  }
}

.scroll-to-top-privacy,
.scroll-to-top-terms {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  transition: 0.3s;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.flow-number,
.flow-step {
  align-items: center;
  display: flex;
}

.scroll-to-top-privacy:hover,
.scroll-to-top-terms:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

.data-flow {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid #e8f5e9;
}

.flow-step {
  margin: 1rem 0;
  padding: 1rem;
  background: #f8fff9;
  border-radius: 10px;
  border-left: 4px solid #4caf50;
}

.flow-number,
.gdpr-badge {
  background: #4caf50;
  color: #fff;
}

.flow-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.gdpr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem 0;
}

.terms-hero {
  background: linear-gradient(135deg,
      rgba(46, 125, 50, 0.9) 0,
      rgba(56, 142, 60, 0.85) 100%),
    url(../images/cta.jpeg) center/cover fixed;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.last-updated {
  color: rgba(255, 255, 255, 0.9);
  margin: 1rem 0 2rem;
  font-size: 1.1rem;
}

.section-title {
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #4caf50;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toc-link,
.toc-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.subsection {
  margin-bottom: 2rem;
}

.subsection-title {
  color: #4caf50;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
}

.terms-list ol {
  padding-left: 1.5rem;
}

.important-notice {
  background: linear-gradient(135deg, #fff8e1 0, #fff3e0 100%);
  border-left: 5px solid #ffa000;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.important-notice strong {
  color: #ffa000;
}

.highlight-box {
  background: linear-gradient(135deg, #e8f5e9 0, #c8e6c9 100%);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 5px solid #4caf50;
}

.acceptance-section,
.toc-container {
  background: #fff;
  border-radius: 15px;
}

.toc-container {
  padding: 1rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8f5e9;
  position: sticky;
  top: 100px;
}

.toc-title {
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.blog-card-category,
.featured-post::before {
  font-weight: 600;
  color: #fff;
  border-radius: 20px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow-y: auto;
}

.blog-card,
.blog-hero,
.faq-answer,
.faq-container,
.faq-hero,
.featured-post {
  overflow: hidden;
}

.toc-list::-webkit-scrollbar {
  width: 6px;
}

.toc-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.toc-list::-webkit-scrollbar-thumb {
  background: #4caf50;
  border-radius: 3px;
}

.toc-item {
  margin-bottom: 0.5rem;
}

.toc-link {
  color: #555;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.acceptance-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toc-link.active,
.toc-link:hover {
  background: #e8f5e9;
  color: #2e7d32;
  border-left-color: #4caf50;
  transform: translateX(5px);
}

.toc-link i {
  color: #4caf50;
  font-size: 0.9rem;
  width: 20px;
}

.contact-card {
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.contact-card h2,
.contact-card h3 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 1rem;
}

.contact-info i {
  font-size: 1.2rem;
  width: 30px;
}

.acceptance-section {
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #4caf50;
}

.acceptance-checkbox {
  justify-content: center;
  margin: 2rem 0;
}

.checkbox-label {
  color: #2e7d32;
  font-weight: 600;
}

@media (max-width: 992px) {
  .page-title {
    font-size: 2.5rem;
  }

  .toc-container {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .terms-content {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.2rem;
  }
}

@media print {

  .acceptance-section,
  .back-to-home,
  .contact-card,
  .scroll-to-top-terms,
  .toc-container {
    display: none !important;
  }

  .terms-content {
    font-size: 12pt;
  }
}

html {
  scroll-behavior: smooth;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  z-index: 1001;
}

.blog-card,
.blog-hero,
.faq-hero,
.featured-post,
.search-box,
.search-section,
.search-widget {
  position: relative;
}

.blog-card::before,
.progress-bar {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.progress-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s;
}

.toc-accordion {
  display: none;
}

.blog-hero {
  background: linear-gradient(135deg,
      rgba(46, 125, 50, 0.9) 0,
      rgba(56, 142, 60, 0.85) 100%),
    url(../images/Urban.jpeg) center/cover fixed;
  margin-top: 86px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
  height: 100%;
  animation: 0.6s forwards fadeInUp;
  opacity: 0;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 100, 0, 0.2);
}

.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 2;
}

.blog-card-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card-category {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #2e7d32;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #888;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.featured-post {
  background: linear-gradient(135deg, #f8fff9 0, #e8f5e9 100%);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 100, 0, 0.15);
}

.featured-post::before {
  content: "FEATURED";
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, gold, orange);
  padding: 0.3rem 1.5rem;
  font-size: 0.8rem;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.featured-post-content {
  padding: 2.5rem;
}

.sidebar-widget {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #4caf50;
}

.widget-title {
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8f5e9;
}

.category-list,
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item,
.tag-item {
  margin-bottom: 0.8rem;
}

.category-link,
.tag-link {
  color: #555;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  transition: 0.3s;
}

.category-link:hover,
.tag-link:hover {
  color: #4caf50;
  transform: translateX(5px);
}

.page-link:hover,
.tag-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
}

.category-count {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag-link {
  display: inline-block;
  background: #f5f5f5;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin: 0.2rem;
  font-size: 0.9rem;
}

.author-bio,
.blog-post-header {
  background: linear-gradient(135deg, #f8fff9 0, #e8f5e9 100%);
}

.recent-post {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 1rem;
}

.recent-post-content {
  flex: 1;
}

.recent-post-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #2e7d32;
  line-height: 1.3;
}

.recent-post-date {
  font-size: 0.8rem;
  color: #888;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.newsletter-input:focus {
  outline: 0;
  border-color: #4caf50;
}

.blog-pagination,
.comments-section {
  margin-top: 3rem;
}

.pagination {
  justify-content: center;
}

.page-link {
  color: #4caf50;
  border: 2px solid #e8f5e9;
  margin: 0 0.3rem;
  border-radius: 10px !important;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: 0.3s;
}

.page-link:hover {
  border-color: #4caf50;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-color: #4caf50;
  color: #fff;
}

.author-bio {
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-right: 1.5rem;
}

.blog-post-header {
  padding: 3rem 0;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.blog-post-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-meta {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.blog-post-meta i {
  color: #4caf50;
  margin-right: 0.5rem;
}

.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.blog-content h2 {
  color: #2e7d32;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.blog-content h3 {
  color: #4caf50;
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

.blog-content blockquote {
  border-left: 5px solid #4caf50;
  padding: 1rem 2rem;
  margin: 2rem 0;
  background: #f8fff9;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #555;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.share-widget {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-facebook {
  background: #3b5998;
}

.share-twitter {
  background: #1da1f2;
}

.share-linkedin {
  background: #0077b5;
}

.share-pinterest {
  background: #bd081c;
}

.share-whatsapp {
  background: #25d366;
}

.comment-form {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 100, 0, 0.1);
}

.back-to-blog,
.back-to-home {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: 0.3s;
  font-weight: 600;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card:first-child {
  animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
  animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
  animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
  animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
  animation-delay: 0.6s;
}

.back-to-blog {
  color: #4caf50;
}

.back-to-blog:hover {
  color: #2e7d32;
  transform: translateX(-5px);
}

.faq-hero {
  background: linear-gradient(135deg,
      rgba(46, 125, 50, 0.9) 0,
      rgba(56, 142, 60, 0.85) 100%),
    url(../images/photo-1469474968028-56623f02e42e.jpg) center/cover fixed;
  padding: 8rem 0 4rem;
}

@keyframes wave {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 2000px bottom;
  }
}

.back-to-home {
  color: #fff;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.back-to-home:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(-5px);
}

.search-section {
  margin-top: -50px;
  z-index: 100;
}

.search-container {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 100, 0, 0.15);
  border: 2px solid #e8f5e9;
}

.category-tab.active,
.category-tab:hover,
.search-button {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
}

.search-input {
  width: 100%;
  padding: 1.2rem 60px 1.2rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.search-input:focus {
  outline: 0;
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.search-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.floating-faq-btn,
.scroll-to-top-faq {
  position: fixed;
  right: 2rem;
  cursor: pointer;
  z-index: 1000;
}

.category-tab,
.faq-container {
  background: #fff;
  transition: 0.3s;
}

.search-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.category-tabs,
.quick-links {
  margin: 3rem 0;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-tab,
.quick-link-icon {
  align-items: center;
  display: flex;
}

.category-tab {
  padding: 0.8rem 1.5rem;
  border: 2px solid #e8f5e9;
  border-radius: 50px;
  color: #555;
  font-weight: 600;
  cursor: pointer;
  gap: 0.5rem;
}

.category-tab.active,
.category-tab:hover {
  border-color: #4caf50;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.faq-section {
  margin: 2rem 0;
}

.faq-container {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.faq-container:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fff9;
  border-left: 5px solid #4caf50;
  transition: 0.3s;
}

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

.faq-question h4 {
  color: #2e7d32;
  font-weight: 600;
  margin: 0;
  flex: 1;
  padding-right: 2rem;
}

.faq-icon {
  color: #4caf50;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-container.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  transition: 0.3s;
}

.faq-container.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: #555;
}

.contact-card {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
  margin: 4rem 0;
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.quick-link-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
  border: 2px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #4caf50;
}

.quick-link-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4caf50;
  font-size: 2rem;
}

.stats-section {
  background: linear-gradient(135deg, #f8fff9 0, #e8f5e9 100%);
  border-radius: 20px;
  padding: 3rem;
  margin: 4rem 0;
}

.stat-item {
  margin: 1.5rem 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #2e7d32;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 1.1rem;
}

.floating-faq-btn {
  bottom: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
  transition: 0.3s;
  animation: 2s infinite pulse;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.floating-faq-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6);
}

.no-results {
  padding: 4rem;
  color: #666;
}

.faq-count {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-left: 1rem;
}

@media (max-width: 992px) {
  .toc-accordion {
    display: block;
    margin-bottom: 2rem;
  }

  .toc-container {
    display: none;
  }

  .toc-accordion .toc-container {
    display: block;
    position: static;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .category-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 1.8rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .featured-post-content,
  .search-container {
    padding: 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .search-section {
    margin-top: -30px;
  }

  .contact-card {
    padding: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-container {
  animation: 0.3s forwards fadeIn;
  opacity: 0;
}

.scroll-to-top-faq {
  bottom: 5rem;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #4caf50;
  border: 2px solid #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top-faq:hover {
  background: #4caf50;
  color: #fff;
  transform: translateY(-3px);
}

.h1,
h1 {
  font-size: 1.5rem;
}

/* Blog Detail Specific CSS */
.blog-detail-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/Urban.jpeg);
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.blog-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.blog-detail-meta-item i {
  color: #4CAF50;
}

.blog-detail-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-detail-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #2E7D32;
  font-weight: 600;
}

.blog-detail-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: #388E3C;
  font-weight: 500;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content blockquote {
  border-left: 4px solid #4CAF50;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  font-size: 1.2rem;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.blog-detail-tag {
  background: #f5f5f5;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.blog-detail-tag:hover {
  background: #4CAF50;
  color: white;
  text-decoration: none;
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  margin: 40px 0;
}

.blog-detail-share-title {
  font-weight: 600;
  color: #333;
  margin: 0;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  color: white;
}

.share-facebook {
  background: #3b5998;
}

.share-twitter {
  background: #1da1f2;
}

.share-linkedin {
  background: #0077b5;
}

.share-pinterest {
  background: #bd081c;
}

.blog-detail-author {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin: 50px 0;
}

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

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.author-bio {
  color: #666;
  font-size: 0.95rem;
}

.blog-detail-navigation {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #eaeaea;
}

.nav-post {
  max-width: 45%;
}

.nav-post-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  display: block;
}

.nav-post-title {
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.nav-post-title:hover {
  color: #4CAF50;
  text-decoration: none;
}

.nav-post-prev {
  text-align: left;
}

.nav-post-next {
  text-align: right;
}

.related-posts-title {
  margin-bottom: 30px;
  color: #2E7D32;
}

.related-post-card {
  height: 100%;
  transition: transform 0.3s ease;
}

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

.related-post-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.related-post-content {
  padding: 20px;
  border: 1px solid #eaeaea;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.related-post-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-detail-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-detail-navigation {
    flex-direction: column;
    gap: 30px;
  }

  .nav-post {
    max-width: 100%;
    width: 100%;
  }

  .nav-post-next {
    text-align: left;
  }
}