

body {
    font-family:  'Droid Serif', Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}




/* HERO SECTION */
.hero{
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    color: #fff;
    background-image: 
        linear-gradient(90deg, #0c360e9a 0%, #0148948c 100%),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

/* Back link */
.back-link{
    margin: 40px;
    
    top:20px;
    left:8%;
    font-size:15px;
    color:#1e3a8a;
    text-decoration:none;
    font-weight:500;
    gap: 10px;
    height: 200px;
}

.back-link::before{
    content:"← ";
}

/* Content container */
.hero-content{
    max-width: 750px;
}

/* Tags */
.tags{
    margin-bottom: 20px;
}

.tag{
    display:inline-block;
    padding:6px 14px;
    margin-right:8px;
    font-size:14px;
    background:#ffffff;
    color:#2d3748;
    border-radius:6px;
    font-weight:500;
}

/* Heading */
.hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.1;
}

/* Description */
.hero p{
    font-size:20px;
    line-height:1.6;
    max-width:650px;
}

/* RESPONSIVE */

@media (max-width: 1024px){
    .hero{
        padding: 60px 6%;
    }
    .hero h1{
        font-size:48px;
    }
    .hero p{
        font-size:18px;
    }
}

@media (max-width: 768px){
    .hero{
        min-height: 480px;
        padding: 50px 5%;
    }
    .hero h1{
        font-size:38px;
    }
    .hero p{
        font-size:16px;
    }
    .back-link{
        left:5%;
    }
}

@media (max-width: 480px){
    .hero{
        min-height: 420px;
        padding: 40px 5%;
    }
    .hero h1{
        font-size:30px;
    }
    .hero p{
        font-size:15px;
    }
    .tag{
        font-size:12px;
        padding:5px 10px;
    }
}


/* ================================================================= */

/* Base Styles */
.overview-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Georgia', serif;
}



.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.overview-text p {
  font-size: 5;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  max-width: 1200px;
}

/* Features */
.features-heading {
  margin-top: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Icons */
.icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.icon.green {
  background: #e6f4ea;
  color: #2e7d32;
}

.icon.blue {
  background: #e3f2fd;
  color: #1565c0;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .overview-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .overview-text p {
    font-size: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }
}


/* ======================================================================= */

/* Section Background */
.impact-section {
  
  background: linear-gradient(135deg, #dfe8ea, #e3eaf8);
  border-radius: 20px;
  margin: 40px 40px;
  height: 250px;
  padding: 30px;
  align-items: center;

}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.impact-title {
  font-size: 42px;
  font-weight: 700;
  
  color: #111;
  font-family: 'Georgia', serif;
}

/* Grid Layout */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Items */
.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'sans-serif';
}

.impact-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.impact-text {
  font-size: 18px;
  color: #333;
  font-family: 'Georgia', serif;
}

/* Colors */
.green {
  color: #2e7d32;
}

.blue {
  color: #1565c0;
}

/* Responsive Design */

@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .impact-title {
    font-size: 34px;
  }

  .impact-number {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .impact-section {
    padding: 50px 15px;
  }

  .impact-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .impact-number {
    font-size: 32px;
  }

  .impact-text {
    font-size: 16px;
  }
}



/* ===================================================== */


/* Section Styling */
.implementation {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Georgia, "Times New Roman", serif;
}



.section-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #111;
}

/* Implementation Items */
.implementation-item {
  padding: 20px 25px;
  margin-bottom: 35px;
  background: transparent;
  border-left: 6px solid;
}

.implementation-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.implementation-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Left Border Colors */
.implementation-item.green {
  border-color: #2e7d32;
}

.implementation-item.blue {
  border-color: #1565c0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 34px;
  }

  .implementation-item h3 {
    font-size: 22px;
  }

  .implementation-item p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .implementation {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .implementation-item {
    padding: 18px 18px;
  }

  .implementation-item h3 {
    font-size: 20px;
  }

  .implementation-item p {
    font-size: 15px;
  }
}


/* ============================================================ */


/* ========================================
   CTA SECTION
   ======================================== */
.greenlist-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding: 30px 40px;
}

.greenlist-cta-card {
    padding: 40px;
    border-radius: 8px;
    color: white;
}

.greenlist-cta-blue {
    background: #2980b9;
}

.greenlist-cta-green {
    background: #27ae60;
}

.greenlist-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.greenlist-cta-text {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.greenlist-cta-btn {
    padding: 15px 30px;
    background: white;
    color: #2980b9;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.greenlist-cta-btn:hover {
    transform: translateY(-2px);
}

.greenlist-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.3s;
}

.greenlist-email-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.greenlist-newsletter-section {
    background:linear-gradient(90deg, #41AD49 0%, #014994 100%);
    padding: 40px ;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin-bottom: 40px;
    margin: 40px;
}

.greenlist-newsletter-content {
    flex: 1;
}

.greenlist-newsletter-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.greenlist-newsletter-text {
    font-size: 1rem;
    opacity: 0.95;
}

.greenlist-newsletter-form {
    display: flex;
    gap: 10px;
}

.greenlist-newsletter-input {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    width: 300px;
    font-size: 0.95rem;
}

.greenlist-newsletter-btn {
    padding: 12px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.greenlist-newsletter-btn:hover {
    background: #229954;
}

