      /* --- THEME VARIABLES --- */
      :root {
        --bg-color: #ffffff;
        --text-main: #000000;
        --text-secondary: #6f6f6f;
        --accent-green: #485c11;
        --accent-light: #f4f8ec;
        --border-radius: 20px;
        --font-serif: "Crimson Text", serif;
        --font-sans: "DM Sans", sans-serif;
        --font-mono: "Roboto Mono", monospace;
      }

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

      body {
        font-family: var(--font-sans);
        background: var(--bg-color);
        color: var(--text-main);
        line-height: 1.5;
        overflow-x: hidden;
      }

      /* --- NAVIGATION --- */
      /* nav {
        padding: 30px 5%;
        width: 100%;
        z-index: 10;
      }
      .back-link {
        text-decoration: none;
        color: var(--text-main);
        font-family: var(--font-mono);
        font-size: 14px;
        letter-spacing: 0.5px;
      }
      .back-link:hover {
        color: var(--accent-green);
      } */

      /* --- HERO SPLIT SECTION --- */
      .hero-container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 40px auto 60px auto;
        padding: 0 20px;
        padding-top: 100px;
        align-items: center;
      }

      .hero-text {
        flex: 1;
        min-width: 300px;
        padding-right: 40px;
      }

      h1 {
        font-family: var(--font-serif);
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 600;
        color: #000;
      }

      .hero-sub {
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 30px;
        max-width: 90%;
        line-height: 1.6;
      }

      /* RIGHT SIDE: FEATURE CARDS */
      .hero-features {
        flex: 1;
        min-width: 300px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .mini-card {
        background: var(--accent-light);
        padding: 20px;
        border-radius: var(--border-radius);
        transition: transform 0.2s;
      }
      .mini-card:hover {
        transform: translateY(-3px);
      }

      .mc-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
        display: block;
      }
      .mc-title {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 5px;
        color: var(--accent-green);
      }
      .mc-desc {
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.4;
      }

      /* --- FULL WIDTH IMAGE --- */
      .full-width-image {
        width: 100%;
        height: 80vh;
        margin-bottom: 80px;
        background-color: #f0f0f0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .full-width-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      /* --- DETAILS SECTION --- */
      .details-section {
        padding: 80px 20px;
        background-color: #fafafa;
      }

      .details-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: flex-start;
      }
      .details-wrapper.reverse-on-desktop {
        flex-direction: row-reverse;
      }
      .details-text {
        flex: 1;
      }

      .details-text h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
      }

      .details-text p {
        font-size: 1.05rem;
        color: var(--text-secondary);
        margin-bottom: 20px;
        line-height: 1.7;
      }

      .feature-list {
        list-style: none;
        margin-top: 30px;
      }

      .feature-list li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 1rem;
      }

      .tick {
        color: var(--accent-green);
        margin-right: 15px;
        font-weight: bold;
        font-size: 1.2rem;
      }

      .cta-btn {
        display: inline-block;
        background-color: var(--accent-green);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s;
        margin-top: 20px;
      }
      .cta-btn.secondary {
        background-color: white;
        color: var(--accent-green);
        border: 2px solid var(--accent-green);
      }
      .cta-btn:hover {
        opacity: 0.9;
      }

      /* --- FOOTER --- */
      .footer-logo {
        width: 40px;
        height: auto;
        margin-bottom: 10px;
      }
      footer {
        padding: 50px 0;
        border-top: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 50px;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero-container {
          flex-direction: column;
          text-align: left;
        }
        .hero-text {
          padding-right: 0;
          margin-bottom: 40px;
        }
        h1 {
          font-size: 2.8rem;
        }
        .full-width-image {
          height: 40vh;
        }
        .details-wrapper {
          flex-direction: column;
        }
      }
    