:root {
    --bg: #f6f8fb;
    --text: #1a1a1a;
    --accent: #0057AD;
    --accent-light: #41A0FF;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* voor header */
  }
  
  .brand-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .brand-header {
    text-align: left;
  }
  
  .brand-logo {
    height: 100px;
    margin-bottom: 1rem;
  }
  
  .brand-header h1 {
    font-size: 2.5rem;
    color: var(--accent);
  }
  
  .brand-tagline {
    font-size: 1.2rem;
    color: #555;
  }

  /* PARTNERS LINK EFFECT */
.link {
    color: var(--accent);
    font-size: 18px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    line-height: 1.4;
  }
  
  .link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1.5px;
    background: var(--accent-light);
    transition: width 0.3s ease-in-out;
  }
  
  .link:hover::after {
    width: 0;
  }
  
  .brand-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .brand-section h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
  }
  
  .brand-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 50px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 2px;
  }
  
  .brand-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .brand-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
  }
  
  .brand-section a:hover {
    text-decoration: underline;
  }
  
  .brand-footer {
    margin-top: auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
    color: #555;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #555;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: var(--accent);
  }
  
  @media (max-width: 720px) {
    .brand-header h1 {
      font-size: 2rem;
    }
  
    .brand-logo {
      height: 80px;
    }
  }
  