    :root{
      --neoac-green:#09483F; /* primary */
      --neoac-lime:#7EBB2F;  /* accent */
      --neoac-dark:#062f2a;
    }
    html { scroll-behavior:smooth; }
    .navbar { background: rgba(9,72,63,.92); }
    .navbar .nav-link { color:#fff; }
    .navbar .nav-link:hover { color: var(--neoac-lime); }
    .brand-dot{ width:10px;height:10px;border-radius:50%;display:inline-block;background:var(--neoac-lime);margin-left:.4rem }

    .hero{
      min-height: 75vh;
      background: linear-gradient(0deg, rgba(9,72,63,.6), rgba(9,72,63,.6)),
        url('../img/hero_agro.jpg') center/cover no-repeat;
      color:#fff; display:flex; align-items:center; justify-content:center; text-align:center; padding: 120px 0 80px;
    }
    .hero h1{font-weight:800; letter-spacing:.5px}
    .hero .lead{font-size:1.25rem}
    .btn-accent{ background:var(--neoac-lime); color:#0b2f1f; border:none }
    .btn-accent:hover{ filter:brightness(.95); color:#0b2f1f }

    section.section{ padding:80px 0 }
    .section-title{ color:var(--neoac-green); font-weight:800 }
    .badge-theme{ background: var(--neoac-lime); color:#08352e }
    .table-fees th, .table-fees td { vertical-align: middle; }

    .footer { background:#052722; color:#cfe7e2 }
    .footer a{ color:#cfe7e2 }

    .form-section{ background:linear-gradient(180deg,#f7fbf6, #eef7ea) }

    .speaker-card{ border:0; box-shadow:0 10px 25px rgba(0,0,0,.08); border-radius:1rem }
    .speaker-card img{ border-top-left-radius:1rem; border-top-right-radius:1rem; height:260px; object-fit:cover }

    .pill{ display:inline-block; padding:.35rem .75rem; border-radius:50rem; background:#e7f4e1 }


.sponsor-logo {
  max-height: 120px;
  object-fit: contain;
  
  transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
  
}

.sponsor-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.sponsor-card:hover {
  background-color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

        .table-container {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            padding: 20px;
        }
        
        .table-fees {
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
            margin-bottom: 0;
        }
        
        .table-fees thead th {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 16px;
            border: none;
            position: sticky;
            top: 0;
        }
        
        .table-fees tbody tr {
            transition: all 0.3s ease;
        }
        
        .table-fees tbody tr:hover {
            background: #f4faee;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }
        
        .table-fees td {
            padding: 16px;
            text-align: center;
            border-bottom: 1px solid #e9ecef;
            font-weight: 500;
        }
        
        .table-fees tr:last-child td {
            border-bottom: none;
        }
        
        .table-fees tbody tr:nth-child(odd) {
            background-color: #f8f9fa;
        }
        
        .table-fees tbody tr:nth-child(even) {
            background-color: white;
        }
        
        .currency {
            font-weight: 700;
            color: #2c3e50;
        }
        
        .tzs {
            color: #27ae60;
        }
        
        .usd {
            color: #2980b9;
        }
        
        .note {
            background: #f8f9fa;
            border-left: 4px solid #7ebb2f;
            padding: 15px;
            border-radius: 4px;
            margin-top: 25px;
        }
        
        .header-icon {
            color: #7ebb2f;
            margin-right: 10px;
        }
        
        @media (max-width: 768px) {
            .table-responsive {
                border-radius: 8px;
                overflow: hidden;
            }
            
            .table-fees thead {
                display: none;
            }
            
            .table-fees tbody tr {
                display: block;
                margin-bottom: 16px;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }
            
            .table-fees td {
                display: block;
                text-align: right;
                padding: 12px 16px;
                border-bottom: 1px solid #e9ecef;
            }
            
            .table-fees td:before {
                content: attr(data-label);
                float: left;
                font-weight: 700;
                color: #2c3e50;
            }
            
            .table-fees tr:last-child td {
                border-bottom: 1px solid #e9ecef;
            }
            
            .table-fees tr:last-child td:last-child {
                border-bottom: none;
            }
        }