 .custom-styles-like-container {
            max-width: '100%';
            margin: 0 auto;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 20px;
            padding: 20px;
            min-height: 100vh;
        }
        .custom-styles-like-aside {
            background: rgba(255, 255, 255, 0.95);
            padding: 10px;
            border-radius: 15px;
            border: 1px solid #043464;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
            position: sticky;
            top: 8rem;
            height: fit-content;
        }
        .custom-styles-like-logo {
            text-align: center;
            margin-bottom: 30px;
        }

        .custom-styles-like-logo p {
            font-size: 12px;
            color: #666;
            font-weight: 600;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        nav ul li {
            margin-bottom: 15px;
        }
        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            display: block;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            /* background: linear-gradient(135deg, #032f5f 0%, #027258 100%, #b6101f 100%); */
            color: rgb(255, 0, 0);
            transform: translateX(5px);
        }
        .custom-styles-like-contact-info {
            margin-top: 10px;
            width: '80%' !important;
            padding-top: 20px;
            border-top: 2px solid #eee;
        }
        .custom-styles-like-contact-info a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }
        .custom-styles-like-main {
            padding-left:10px;
            background: rgba(255, 255, 255, 0.98);            
            border-radius: 15px;
        }
        .custom-styles-like-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px solid #830000ff;
        }

        .custom-styles-like-tagline {
            font-size: 20px;
            color: #666;
            font-style: italic;
            margin-top: 10px;
        }
        .custom-styles-like-intro {
            background: linear-gradient(135deg, rgba(234, 102, 102, 0.1) 0%, rgba(75, 162, 75, 0.1) 100%);
            margin-top: 20;
            padding: 40px;
            border-radius: 10px;
            /* margin-bottom: 20px; */
            line-height: 1.8;
        }
        .custom-styles-like-intro p { margin-bottom: 15px; }
        
        .custom-styles-like-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .custom-styles-like-category-card {
            background: white;
            border: 2px solid #eee;
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s ease;
        }
        .custom-styles-like-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            border-color: #667eea;
        }
        .custom-styles-like-category-card h3 {
            color: #667eea;
            margin-bottom: 20px;
            font-size: 22px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        .custom-styles-like-category-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .custom-styles-like-category-card ul li {
            padding: 8px 0 8px 25px;
            position: relative;
            color: #555;
        }
        .custom-styles-like-category-card ul li:before {
            content: ">";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 20px;
        }
        .custom-styles-like-footer-note {
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(234, 102, 102, 0.1) 0%, rgba(75, 82, 162, 0.1) 100%);
            border-radius: 10px;
            text-align: center;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .custom-styles-like-container {
    display: flex;
    flex-direction: column;
  }

    .custom-styles-like-main {
    order: 1;
  }


              .custom-styles-like-aside {
    order: 2;
    position: relative;
    top: 0;
    margin-top: 20px;
  }
            .custom-styles-like-categories { grid-template-columns: 1fr; }
        }

          .hover-item {
    transition: all 0.3s ease;
    padding: 6px 0;
  }

  .hover-item:hover {
    color: #0d6efd;
    transform: translateX(5px);
  }

  section a.h4 {
    letter-spacing: 1px;
  }

  @media (max-width: 768px) {
    section .h4 {
      text-align: center;
    }
    section .border-bottom {
      margin: 0 auto 1.5rem;
    }
    .hover-item {
      text-align: center;
    }
  }

  nav ul li a.active {
    background: linear-gradient(135deg, #013f81 100%, #027258 100%, #b6101f 100%);
    color: white !important;
    transform: translateX(5px);
    font-weight: 600;
}
