 :root {
   --primary-color: #2F6C2E;
   /* Green from the reference */
   --bg-color: #F8F9FA;
   --text-dark: #333333;
   --text-light: #666666;
   --card-bg: rgba(255, 255, 255, 0.95);
   --border-radius: 12px;
   --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   --transition: all 0.3s ease;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Inter', 'Roboto', sans-serif;
 }

 body {
   background-color: var(--bg-color);
   color: var(--text-dark);
   line-height: 1.6;
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 /* Header */
 header {
   background-color: #ffffff;
   padding: 15px 50px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid #eeeeee;
   position: relative;
 }

 .logo-container {
   display: flex;
   align-items: center;
   gap: 15px;
 }

 .logo-circle {
   width: 50px;
   height: 50px;
   background-color: transparent;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   font-weight: bold;
   font-size: 24px;
 }

 .logo-text h1 {
   font-size: 20px;
   color: var(--primary-color);
   margin-bottom: 0;
 }

 .logo-text p {
   font-size: 14px;
   color: var(--text-light);
 }

 .header-right {
   display: flex;
   align-items: center;
   gap: 20px;
 }

 .search-bar {
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   align-items: center;
   background-color: #f5f5f5;
   border-radius: 20px;
   padding: 5px 15px;
 }

 .search-bar input {
   border: none;
   background: transparent;
   outline: none;
   padding: 5px;
 }

 /* Navbar */
 nav {
   background-color: var(--primary-color);
   padding: 0 50px;
 }

 nav ul {
   list-style: none;
   display: flex;
   gap: 30px;
 }

 nav ul li {
   position: relative;
 }

 nav ul li a {
   display: block;
   padding: 15px 10px;
   color: white;
   text-decoration: none;
   font-weight: 500;
   transition: var(--transition);
 }

 nav ul li a:hover {
   background-color: rgba(255, 255, 255, 0.1);
 }

 .dropdown-content {
   display: none;
   position: absolute;
   background-color: white;
   min-width: 160px;
   box-shadow: var(--shadow);
   z-index: 100;
   border-radius: 0 0 8px 8px;
 }

 .dropdown-content a {
   color: var(--text-dark);
   padding: 12px 16px;
   text-decoration: none;
   display: block;
   font-weight: normal;
 }

 .dropdown-content a:hover {
   background-color: #f1f1f1;
   color: var(--primary-color);
 }

 .dropdown:hover .dropdown-content {
   display: block;
 }

 /* Hero Section */
 .hero {
   height: 500px;
   background-size: cover;
   background-position: center;
   position: relative;
   display: flex;
   align-items: center;
   padding: 50px;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
 }

 .hero-content {
   position: relative;
   z-index: 1;
   color: white;
   max-width: 600px;
 }

 .hero-content h2 {
   font-size: 42px;
   line-height: 1.2;
   margin-bottom: 20px;
   text-transform: uppercase;
 }

 .btn-primary {
   display: inline-block;
   background-color: #F4B41A;
   color: var(--text-dark);
   padding: 12px 30px;
   border-radius: 25px;
   text-decoration: none;
   font-weight: bold;
   transition: var(--transition);
 }

 .btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(244, 180, 26, 0.4);
 }

 /* Main Layout */
 .container {
   max-width: 1400px;
   width: 100%;
   margin: -50px auto 50px;
   position: relative;
   z-index: 10;
   display: grid;
   grid-template-columns: 1fr 320px;
   gap: 40px;
   padding: 0 20px;
 }

 /* Cards */
 .card {
   background: var(--card-bg);
   border-radius: var(--border-radius);
   box-shadow: var(--shadow);
   padding: 25px;
   margin-bottom: 30px;
   backdrop-filter: blur(10px);
 }

 .card-title {
   font-size: 22px;
   color: var(--text-dark);
   margin-bottom: 20px;
   border-left: 4px solid var(--primary-color);
   padding-left: 10px;
 }

 /* Overview Section */
 .overview-flex {
   display: flex;
   gap: 20px;
 }

 .stats-box {
   flex: 1;
   background-color: var(--primary-color);
   color: white;
   border-radius: 8px;
   padding: 15px;
   font-size: 14px;
 }

 .stats-box p {
   margin-bottom: 8px;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .overview-text {
   flex: 1;
   font-size: 14px;
 }

 /* Grid Sections */
 .grid-2 {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
 }

 .grid-3 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
 }

 .grid-4 {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 15px;
 }

 .image-card {
   position: relative;
   border-radius: 8px;
   overflow: hidden;
   height: 150px;
   cursor: pointer;
 }

 .image-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .image-card:hover img {
   transform: scale(1.1);
 }

 .image-card .caption {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: rgba(0, 0, 0, 0.6);
   color: white;
   padding: 8px;
   font-size: 14px;
   font-weight: bold;
 }

 .transport-card {
   background: #f0fdf4;
   border: 1px solid #bbf7d0;
   border-radius: 8px;
   padding: 15px;
   text-align: center;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-decoration: none;
   color: var(--primary-color);
   font-weight: bold;
   transition: var(--transition);
 }

 .transport-card:hover {
   background: #dcfce7;
 }

 /* Sidebar */
 .sidebar .card {
   margin-bottom: 20px;
 }

 /* Stats view styling */
 .stats-list {
   list-style: none;
 }

 .stats-list li {
   display: flex;
   justify-content: space-between;
   padding: 10px 0;
   border-bottom: 1px solid #eee;
   font-size: 15px;
 }

 .stats-list li:last-child {
   border-bottom: none;
 }

 .stats-list li span:last-child {
   font-weight: bold;
   color: var(--primary-color);
 }

 /* Useful info */
 .contact-box {
   background: #fef2f2;
   border: 1px solid #fecaca;
   padding: 15px;
   border-radius: 8px;
   text-align: center;
   margin-bottom: 15px;
 }

 .contact-box h3 {
   color: #dc2626;
   font-size: 24px;
   margin-top: 5px;
 }

 .admin-link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 15px;
   background: #f0fdf4;
   border: 1px solid #bbf7d0;
   border-radius: 8px;
   text-decoration: none;
   color: var(--primary-color);
   font-weight: bold;
   margin-bottom: 20px;
 }

 .news-item {
   display: flex;
   gap: 10px;
   margin-bottom: 15px;
   font-size: 13px;
 }

 .news-item img {
   width: 60px;
   height: 40px;
   border-radius: 4px;
   object-fit: cover;
 }

 .news-item h4 {
   font-weight: normal;
   color: var(--text-dark);
   margin-bottom: 3px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 .news-item span {
   color: var(--text-light);
   font-size: 11px;
 }

 /* Footer */
 footer {
   background-color: var(--primary-color);
   color: white;
   padding: 20px 50px;
   display: flex;
   justify-content: space-between;
   font-size: 14px;
   margin-top: auto;
 }

 footer a {
   color: white;
   text-decoration: none;
 }

 footer a:hover {
   text-decoration: underline;
 }

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

 @media (max-width: 768px) {
   header {
     flex-direction: column;
     gap: 15px;
   }

   nav ul {
     flex-wrap: wrap;
     justify-content: center;
   }

   .grid-2,
   .grid-3,
   .grid-4 {
     grid-template-columns: 1fr 1fr;
   }

   .overview-flex {
     flex-direction: column;
   }
 }

/* Quill Alignment Utility Classes */
.ql-align-center { text-align: center !important; }
.ql-align-right { text-align: right !important; }
.ql-align-justify { text-align: justify !important; }
.ql-video { width: 100%; height: auto; }