 :root {
      --brand-red: #a62d2d;
      --white: #ffffff;
      --light-gray: #f4f4f4;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
    }

    body {
      
      flex-direction: column;
      min-height: 100vh;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--light-gray);
      color: #333;
    }

    .page-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header {
      background-color: var(--brand-red);
      padding: 1rem 2rem;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    header img {
      height: 60px;
    }

    .form-menu {
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 2rem;
      flex-wrap: wrap;
    }

    .form-card {
      background: var(--white);
      color: var(--brand-red);
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      width: 200px;
      text-align: center;
      text-decoration: none;
      transition: transform 0.2s ease-in-out;
    }

    .form-card:hover {
      transform: translateY(-5px);
    }

    .form-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .form-card h3 {
      margin: 1rem 0;
    }

    footer {
      background-color: var(--brand-red);
      color: var(--white);
      text-align: center;
      padding: 1rem;
    }

    /*<!--Dev JAC 06.15.25-->*/