:root {
  --navy: #002b5c;
  --charcoal: #333333;
  --gold: #b38b59;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --mutindagreen: #9D863F;
  --mutindamaroon: rgb(119, 4, 4);
  --mutindagreen-light: rgba(84, 102, 21, 0.1);
  --mutindamaroon-light: rgba(119, 4, 4, 0.1);
  --mutindagreen-dark: #9D853F;
  --mutindamaroon-dark: rgb(95, 3, 3);
  --gradient-primary: linear-gradient(135deg, var(--mutindamaroon), var(--mutindagreen));
  --gradient-secondary: linear-gradient(135deg, var(--mutindagreen), var(--mutindagreen-dark));
}

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        background-color: var(--light-gray);
        color: var(--charcoal);
        line-height: 1.6;
        font-family: 'jost';
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Styles */
      header {
        background: var(--gradient-primary);
        color: var(--white);
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: var(--gold);
      }

      nav ul {
        display: flex;
        list-style: none;
      }

      nav ul li {
        margin-left: 1.5rem;
      }

      nav ul li a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      nav ul li a:hover {
        color: var(--gold);
      }

      /* Breadcrumb */
      .breadcrumb {
        padding: 1rem 0;
        background-color: var(--white);
        margin-bottom: 2rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      }

      .breadcrumb a {
        color: var(--mutindamaroon);
        text-decoration: none;
      }

      .breadcrumb a:hover {
        text-decoration: underline;
      }

      /* Main Content */
      .main-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
      }

      .article-content {
        background-color: var(--white);
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .article-header {
        margin-bottom: 1.5rem;
      }

      .article-meta {
        display: flex;
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 1rem;
      }

      .article-meta span {
        margin-right: 1rem;
      }

      .article-category {
        background-color: var(--mutindagreen-light);
        color: var(--mutindagreen);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .article-title {
        font-size: 2.2rem;
        color: var(--navy);
        margin-bottom: 1rem;
        line-height: 1.3;
      }

      .article-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 1.5rem;
      }

      .article-body {
        font-size: 1.1rem;
        line-height: 1.7;
      }

      .article-body h2 {
        color: var(--mutindamaroon);
        margin: 2rem 0 1rem;
        font-size: 1.6rem;
      }

      .article-body h3 {
        color: var(--mutindagreen);
        margin: 1.5rem 0 0.8rem;
        font-size: 1.3rem;
      }

      .article-body p {
        margin-bottom: 1.2rem;
      }

      .article-body blockquote {
        border-left: 4px solid var(--mutindagreen);
        padding-left: 1.5rem;
        margin: 1.5rem 0;
        font-style: italic;
        color: #555;
      }

      .article-body ul,
      .article-body ol {
        margin: 1rem 0 1rem 2rem;
      }

      .article-body li {
        margin-bottom: 0.5rem;
      }

      /* Sidebar */
      .sidebar {
        display: flex;
        flex-direction: column;
        gap: 2rem;
      }

      .sidebar-widget {
        background-color: var(--white);
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      }

      .widget-title {
        font-size: 1.3rem;
        color: var(--navy);
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--mutindagreen-light);
      }

      .related-articles {
        list-style: none;
      }

      .related-articles li {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
      }

      .related-articles li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
      }

      .related-articles a {
        color: var(--charcoal);
        text-decoration: none;
        font-weight: 500;
        display: block;
        transition: color 0.3s;
      }

      .related-articles a:hover {
        color: var(--mutindamaroon);
      }

      .related-articles .article-meta {
        font-size: 0.8rem;
        margin-top: 0.3rem;
      }

      .categories-list {
        list-style: none;
      }

      .categories-list li {
        margin-bottom: 0.8rem;
      }

      .categories-list a {
        color: var(--charcoal);
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        transition: color 0.3s;
      }

      .categories-list a:hover {
        color: var(--mutindamaroon);
      }

      .categories-list .count {
        background-color: var(--mutindagreen-light);
        color: var(--mutindagreen);
        padding: 0.2rem 0.5rem;
        border-radius: 12px;
        font-size: 0.8rem;
      }

      /* Footer */
      footer {
        background: var(--gradient-secondary);
        color: var(--white);
        padding: 3rem 0 1.5rem;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: var(--gold);
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 0.7rem;
      }

      .footer-links a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s;
      }

      .footer-links a:hover {
        color: var(--gold);
      }

      .copyright {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .main-content {
          grid-template-columns: 1fr;
        }

        .footer-content {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          text-align: center;
        }

        nav ul {
          margin-top: 1rem;
          justify-content: center;
        }

        nav ul li {
          margin: 0 0.8rem;
        }

        .article-title {
          font-size: 1.8rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }
      }

      /* Footer */
      footer {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: var(--white);
        padding: 80px 0 30px;
        position: relative;
        overflow: hidden;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 50px;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
      }

      .footer-logo img {
        width: 200px;
        height: auto;
        object-fit: contain;
        filter: brightness(0) invert(1);
        transition: all 0.4s ease;
      }

      .footer-logo:hover img {
        transform: scale(1.05);
      }

      .footer-about p {
        font-size: 1rem;
        line-height: 1.7;
        color: #ccc;
        max-width: 320px;
        margin-bottom: 25px;
      }

      .footer-links h3,
      .footer-services h3,
      .footer-contact h3 {
        color: var(--mutindagreen);
        margin-bottom: 25px;
        font-size: 1.5rem;
        
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 12px;
      }

      .footer-links h3::after,
      .footer-services h3::after,
      .footer-contact h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--mutindagreen);
        border-radius: 2px;
      }

      .footer-links ul,
      .footer-services ul,
      .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links ul li,
      .footer-services ul li,
      .footer-contact ul li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        font-size: 1rem;
      }

      .footer-links a,
      .footer-services a,
      .footer-contact a {
        color: #ccc;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
      }

      .footer-links a:hover,
      .footer-services a:hover,
      .footer-contact a:hover {
        color: var(--mutindagreen);
        padding-left: 5px;
      }

      .footer-contact ul li i {
        margin-right: 12px;
        color: var(--mutindagreen);
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
      }

      .copyright {
        text-align: center;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #999;
        font-size: 0.95rem;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }

      .credit {
        margin-top: 10px;
        font-size: 0.9rem;
        color: #777;
      }

      .credit span {
        color: #e74c3c;
      }

      .credit a {
        color: gold;
        text-decoration: none;
        font-weight: 400;
        transition: all 0.3s ease;
      }

      .credit a:hover {
        color: var(--mutindamaroon);
        text-decoration: underline;
      }

      /* WhatsApp Float */
      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2rem;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        z-index: 1000;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .whatsapp-float:hover {
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
      }