:root {
      --bs-primary: #4F46E5;
      --bs-primary-rgb: 79, 70, 229;
      --bs-secondary: #F59E0B;
      --bs-secondary-rgb: 245, 158, 11;
      --bs-tertiary: #F8FAFC;
      --bs-tertiary-rgb: 248, 250, 252;
      --primary: #4F46E5;
      --secondary: #F59E0B;
      --accent: #10B981;
      --tertiary: #F8FAFC;
    }

    * {
      -webkit-font-smoothing: antialiased;
    }

    body {
      font-family: 'Rubik', sans-serif;
      color: #334155;
      overflow-x: hidden; /* Prevents horizontal scroll from SVGs */
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background-color: #4338CA;
      border-color: #4338CA;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    }

    .btn-whatsapp {
      background-color: #25D366;
      border-color: #25D366;
      color: white;
      border-radius: 8px;
      padding: 0.8rem 2rem;
      font-weight: 500;
      transition: 0.3s;
    }

    .btn-whatsapp:hover {
      background-color: #128C7E;
      border-color: #128C7E;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    /* Navbar */
    .navigation {
      background-color: var(--bs-tertiary) !important;
      box-shadow: 0 2px 10px rgba(0,0,0,0.03);
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    .nav-link {
      font-weight: 500;
      color: #334155;
      padding: 0.5rem 1rem !important;
    }

    .nav-link:hover, .nav-link.active {
      color: var(--bs-primary);
    }

    /* Sections */
    .section {
      padding: 4rem 0;
    }

    .section-sm {
      padding: 3rem 0;
    }

    .page-header {
      background-color: var(--bs-tertiary) !important;
      padding: 3rem 0;
    }

    .page-header h2 {
      font-weight: 700;
      color: #1E293B;
    }

    .bg-tertiary {
      background-color: var(--bs-tertiary) !important;
    }

    /* Blog Details Styles */
    .article-header h1 {
      font-weight: 700;
      color: #1E293B;
      line-height: 1.3;
    }

    .article-meta {
      font-size: 0.9rem;
      color: #64748B;
    }
    
    .article-meta a {
      color: var(--bs-primary);
      font-weight: 500;
    }

    .post-slider {
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    
    .post-slider img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .content {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #475569;
    }

    .content h4 {
      font-weight: 600;
      color: #1E293B;
      margin-top: 2.5rem;
      margin-bottom: 1rem;
    }

    .content h5 {
      font-weight: 600;
      color: #1E293B;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .content p {
      margin-bottom: 1.2rem;
    }

    .content code {
      background-color: #f1f5f9;
      color: var(--bs-secondary);
      padding: 3px 8px;
      border-radius: 6px;
      font-family: monospace;
      font-size: 0.9em;
    }

    .notices {
      padding: 20px;
      border-radius: 8px;
      margin: 25px 0;
      font-size: 0.95rem;
    }

    .notices.note {
      background-color: rgba(var(--bs-primary-rgb), 0.05);
      border-left: 4px solid var(--bs-primary);
    }

    .notices.tip {
      background-color: rgba(16, 185, 129, 0.05);
      border-left: 4px solid #10B981;
    }

    .notices.info {
      background-color: rgba(245, 158, 11, 0.05);
      border-left: 4px solid #F59E0B;
    }

    table {
      width: 100%;
      margin-bottom: 25px;
      border-collapse: collapse;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    table th, table td {
      padding: 15px;
      border: 1px solid #e2e8f0;
    }

    table th {
      background-color: var(--bs-primary);
      color: #fff;
      font-weight: 500;
    }
    
    table td {
      color: #475569;
    }

    blockquote {
      border-left: 4px solid var(--bs-secondary);
      padding-left: 25px;
      margin: 30px 0;
      font-style: italic;
      font-size: 1.2rem;
      color: #334155;
      font-weight: 500;
    }

    /* Accordion */
    .accordion-item {
      border: 1px solid #e2e8f0 !important;
      border-radius: 8px !important;
      margin-bottom: 15px;
      overflow: hidden;
    }
    .accordion-button {
      font-weight: 500;
      color: #1E293B;
      padding: 1.2rem 1.5rem;
    }
    .accordion-button:not(.collapsed) {
      background: rgba(var(--bs-primary-rgb), 0.05);
      color: var(--bs-primary);
      box-shadow: none;
    }
    .accordion-button:focus {
      box-shadow: none;
      border-color: var(--bs-primary);
    }

    /* Footer */
    footer {
      background-color: var(--bs-tertiary) !important;
      padding-top: 4rem !important;
    }
    .footer-widget h5 {
      font-weight: 600;
      color: #1E293B;
    }
    .footer-widget ul li a {
      color: #64748B;
      font-size: 0.95rem;
    }
    .footer-widget ul li a:hover {
      color: var(--bs-primary);
      padding-left: 5px;
    }
    .social-icons a {
      color: #64748B;
      font-size: 1.2rem;
      transition: 0.3s;
    }
    .social-icons a:hover {
      color: var(--bs-primary);
      transform: translateY(-3px);
    }

    @media (max-width: 768px) {
      .section {
        padding: 2.5rem 0;
      }
      .post-slider img {
        height: 250px;
      }
      .content {
        font-size: 1rem;
      }
    }