/* ===== Base Styles ===== */
    :root {
      --primary: #8B5A2B;
      --primary-dark: #6d4722;
      --light: #f8f5f2;
      --dark: #2a2a2a;
      --text: #4a4a4a;
      --eco-green: #5a8b46;
      --shadow: 0 10px 30px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    
    html, body {
      width: 100%;
      overflow-x: hidden;
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      line-height: 1.7;
      background-color: #f9f9f9;
    }
    
    h1, h2, h3 {
      font-weight: 300;
      line-height: 1.2;
    }
    
    .playfair {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }
    
    /* ===== Hero Section ===== */
    .hero-section {
      height: 103vh;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      margin-top: -80px;
    }
    
    .parallax-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                  url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      will-change: transform;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 20px;
      width: 100%;
    }
    
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      font-weight: 400;
      color: white;
      letter-spacing: 5px;
      margin-bottom: 20px;
    }
    
    .hero-line {
      width: 150px;
      height: 2px;
      background: var(--eco-green);
      margin: 0 auto;
      position: relative;
    }
    
    .hero-line::before, .hero-line::after {
      content: '';
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--eco-green);
      top: 50%;
      transform: translateY(-50%);
    }
    
    .hero-line::before {
      left: -5px;
    }
    
    .hero-line::after {
      right: -5px;
    }
    
    .scroll-indicator {
      position: absolute;
      bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      z-index: 2;
    }
    
    .scroll-indicator span {
      font-size: 12px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
    }
    
    .scroll-arrow {
      width: 20px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      position: relative;
    }
    
    .scroll-arrow::before {
      content: '';
      position: absolute;
      width: 4px;
      height: 8px;
      background: var(--eco-green);
      border-radius: 2px;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollDown 2s infinite;
    }
    
    @keyframes scrollDown {
      0% { transform: translate(-50%, 0); opacity: 1; }
      100% { transform: translate(-50%, 15px); opacity: 0; }
    }
    
    /* ===== Section Styles ===== */
    section {
      position: relative;
      padding: 80px 0;
      width: 100%;
      overflow: hidden;
    }
    
    .section-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5%;
      width: 100%;
    }
    
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 400;
      margin-bottom: 50px;
      text-align: center;
      color: var(--eco-green);
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--eco-green);
    }
    
    .section-subtitle {
      font-size: 1.3rem;
      font-weight: 300;
      margin-bottom: 40px;
      text-align: center;
      color: var(--eco-green);
    }
    
    .content-text {
      font-size: 1.1rem;
      line-height: 2;
      font-weight: 300;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .content-text p {
      margin-bottom: 30px;
    }
    
    /* ===== Sustainable Efforts Section ===== */
    .sustainable-efforts {
      background-color: white;
    }
    
    .full-banner {
      height: 70vh;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      margin-bottom: 80px;
      border-radius: 8px;
      box-shadow: var(--shadow);
    }
    
    .full-banner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      will-change: transform;
    }
    
    .overlay-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    }
    
    /* ===== Initiatives Section ===== */
    .initiatives {
      background-color: var(--light);
    }
    
    .two-column {
      display: flex;
      flex-wrap: wrap;
      gap: 80px;
      align-items: center;
    }
    
    .left-column, .right-column {
      flex: 1;
      min-width: 300px;
    }
    
    .image-gallery {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .image-container {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .image-container:hover {
      transform: translateY(-10px);
    }
    
    .eco-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .eco-button {
      background: var(--eco-green);
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      cursor: pointer;
      transition: var(--transition);
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 500;
      margin-top: 2rem;
      display: inline-flex;
      align-items: center;
    }
    
    .eco-button:hover {
      background: #4a7740;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(90, 139, 70, 0.3);
    }
    
    .button-icon {
      margin-left: 10px;
      transition: var(--transition);
    }
    
    .eco-button:hover .button-icon {
      transform: translateX(5px);
    }
    
    /* ===== Initiatives Grid ===== */
    .initiatives-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 80px 0;
    }
    
    .initiative-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 40px;
      text-align: center;
    }
    
    .initiative-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .initiative-icon {
      font-size: 3rem;
      color: var(--eco-green);
      margin-bottom: 20px;
    }
    
    .initiative-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--eco-green);
      margin-bottom: 15px;
    }
    
    .initiative-text {
      font-size: 1rem;
      line-height: 1.8;
    }
    
    /* ===== Responsive Styles ===== */
    @media (max-width: 1200px) {
      .hero-content h1 {
        font-size: 5rem;
      }
    }
    
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 4rem;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .full-banner {
        height: 50vh;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 3px;
      }
      
      .hero-section {
        padding-top: 60px;
      }
      
      .two-column {
        flex-direction: column;
        gap: 40px;
      }
      
      .initiative-card {
        padding: 30px 20px;
      }
      
      .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
      }
      
      .section-subtitle {
        font-size: 1.1rem;
      }
      
      .content-text {
        font-size: 1rem;
      }
      
      .full-banner {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 50px;
      }
    }
    
    @media (max-width: 576px) {
      .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
      }
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .section-wrapper {
        padding: 0 20px;
      }
      
      .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 50px 0;
      }
      
      .initiative-card {
        padding: 25px 15px;
      }
      
      .initiative-icon {
        font-size: 2.5rem;
      }
      
      .initiative-title {
        font-size: 1.3rem;
      }
      
      .eco-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
      }
      
      .hero-line {
        width: 100px;
      }
    }
    
    @media (max-width: 400px) {
      .hero-content h1 {
        font-size: 2rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
    }