    :root {
      --primary-color: #a020f0;
      --primary-dark: #6a0dad;
      --bg-light: #f8f9fa;
      --text-dark: #212529;
      --text-muted: #6c757d;
    }

    body {
      background-color: var(--bg-light);
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    main {
      padding: 50px 0;
       background-color: #f8f9fa;
      font-family: Arial, sans-serif;
    }



    article.blog-post {
      background-color: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    header.blog-header h1 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .blog-meta {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .blog-category {
      color: var(--primary-color);
      font-weight: 500;
    }

    figure.blog-image {
      margin: 25px 0;
      border-radius: 10px;
      overflow: hidden;
    }

    figure.blog-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .blog-content {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-dark);
    }

    footer.blog-footer {
      margin-top: 30px;
    }

    .back-link {
      display: inline-block;
      color: var(--primary-color);
      font-weight: 500;
      text-decoration: none;
    }

    .back-link:hover {
      color: var(--primary-dark);
      text-decoration: underline;
    }
       .brand-card {
      background: white;
      border-radius: 12px;
      box-shadow: var(--brand-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding: 20px;
      height: 100%;
    }

    .brand-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }

    .brand-image {
      width: 120px;
      height: 120px;
      object-fit: contain;
      border-radius: 50%;
      border: 3px solid var(--brand-primary);
      padding: 10px;
      background-color: #fff;
      margin-bottom: 15px;
    }

    .brand-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brand-primary-dark);
      margin: 0;
    }
     .breadcrumb {
      background: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }
    .breadcrumb-item + .breadcrumb-item::before {
      content: ">";
      color: var(--primary-color);
      padding: 0 0.5rem;
    }
    .breadcrumb a {
      color: var(--primary-color);
      text-decoration: none;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }
 