 /* ----- Original Farm Styles ----- */
    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
    }

    header {
      background: linear-gradient(135deg, #f0ad31, #f0c678);
      color: #333;
      padding: 10px 0;
      text-align: center;
      border-bottom: 2px solid #ccc;
    }
    header h1 { font-size: 2.5rem; }

    nav {
      background: #333;
      color: #fff;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding: 10px 0;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1rem;
    }
    nav a:hover { text-decoration: underline; }

    .pretty-button {
      background: linear-gradient(135deg, #f0ad31, #f0c678);
      border: none;
      color: white;
      padding: 12px 24px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-block;
    }

    .container {
      max-width: 1000px;
      margin: auto;
      overflow: hidden;
      padding: 20px;
    }

    .hero {
      text-align: center;
      margin: 20px 0;
    }
    .hero img {
      max-width: 100%;
      border-radius: 10px;
    }
    .content { margin-top: 20px; }
    .content h2 { color: #ff9900; }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .grid img {
      max-width: 100%;
      border-radius: 10px;
    }

    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px 0;
      margin-top: 20px;
    }
    footer a { color: #f0ad31; }
    footer p { margin: 5px 0; }

    .instagram-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #000;
      font-family: Arial, sans-serif;
      font-size: 16px;
    }
    .instagram-icon {
      width: 16px;
      height: 16px;
      margin-right: 8px;
    }

    /* ----- New Coop Rental Styles (added) ----- */
    .rental-section {
      background: #f5f8f2;
      border-radius: 30px;
      padding: 30px 20px;
      margin: 40px 0;
      border: 1px solid #d6ddd4;
    }
    .rental-section .section-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      color: #1d402a;
      margin-bottom: 20px;
    }
    .rental-section .section-title i {
      color: #d48c2b;
      margin-right: 10px;
    }
    .rental-hero {
      background: linear-gradient(145deg, #2b5e3b, #1d402a);
      color: #fff;
      padding: 40px 20px 35px;
      text-align: center;
      border-radius: 24px;
      margin-bottom: 30px;
    }
    .rental-hero h2 {
      font-size: 2.2rem;
      font-weight: 700;
    }
    .rental-hero h2 i { color: #f9d56e; }
    .rental-hero p { font-size: 1.15rem; opacity: 0.9; }
    .rental-hero .price-badge {
      background: #f9d56e;
      color: #1d402a;
      display: inline-block;
      padding: 8px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 10px 0 15px;
    }
    .btn-rental {
      background: #f9d56e;
      color: #1d402a;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: 0.2s;
      border: 2px solid transparent;
      margin: 5px;
    }
    .btn-rental-outline {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }
    .btn-rental-outline:hover {
      background: #fff;
      color: #1d402a;
    }
    .btn-rental-primary:hover {
      background: #f5c94a;
      transform: scale(1.02);
    }

    .card-grid-rental {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    .card-rental {
      background: #fff;
      border-radius: 20px;
      padding: 20px 18px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      border: 1px solid #eaeadf;
      text-align: center;
    }
    .card-rental i {
      font-size: 2.2rem;
      color: #2b5e3b;
      margin-bottom: 10px;
    }
    .card-rental h4 { font-size: 1.2rem; margin-bottom: 6px; }

    .table-wrap-rental {
      overflow-x: auto;
      background: #fff;
      border-radius: 20px;
      padding: 10px 0 20px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
      margin: 20px 0;
      border: 1px solid #eaeadf;
    }
    .table-wrap-rental table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }
    .table-wrap-rental th {
      background: #eef3ea;
      padding: 14px 12px;
      text-align: left;
      font-weight: 600;
    }
    .table-wrap-rental td {
      padding: 12px 12px;
      border-bottom: 1px solid #eaeadf;
    }
    .table-wrap-rental tr:last-child td { border-bottom: none; }
    .check-rental { color: #2b5e3b; }
    .cross-rental { color: #b13e3e; }
    .highlight-badge-rental {
      background: #f9d56e;
      padding: 3px 14px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.8rem;
    }
    .highlight-green {
      background: #b6d7a8;
      padding: 3px 14px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.8rem;
    }

    .two-col-rental {
      display: grid;
      grid-template-columns: 1fr;
      gap: 25px;
      margin: 25px 0;
    }
    .council-box-rental {
      background: #fff;
      border-radius: 20px;
      padding: 18px 22px;
      border-left: 6px solid #2b5e3b;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }
    .council-box-rental ul { padding-left: 18px; }

    .testimonial-rental {
      background: #fff;
      border-radius: 20px;
      padding: 20px 25px;
      margin: 15px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      border: 1px solid #eaeadf;
    }
    .testimonial-rental i { color: #d48c2b; font-size: 1.5rem; opacity: 0.5; margin-right: 6px; }

    .cta-rental {
      background: #1d402a;
      color: #fff;
      border-radius: 30px;
      padding: 40px 25px;
      text-align: center;
      margin: 30px 0 10px;
    }
    .cta-rental h3 { font-size: 1.8rem; }
    .cta-rental .btn-rental { margin: 8px; }

    @media (max-width: 768px) {
      .two-col-rental { grid-template-columns: 1fr; }
      .rental-hero h2 { font-size: 1.7rem; }
    }