    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

    :root {
  
      
        --blue: #004a99;       /* Accent blue */
  --blue-hover: #0074cc; /* Hover/link highlight */
  --bg-light: #f9f9f9;   /* Page background */
  --gray-light: #eaeaea; /* Card or image bg */
  --gray-border: #dcdcdc; /* Subtle border lines */
  --text-dark: #2c2c2c;  /* Main text */
  --card-bg: #ffffff;    /* Card background */
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--bg-light);
  color: var(--text-dark);
      font-family: 'Inter', system-ui, sans-serif;

      font-size: 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; 
      min-height: 100vh;
      padding: 0 1rem;
    }

    h1 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--blue);
      margin: 2rem 0 1.5rem;
    }

    .content-wrapper {
      display: flex;
        background: var(--card-bg);
  border: 1px solid var(--gray-border);

      width: 60%; /* Wider margins (was 80%) */
      max-width: 800px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
      overflow: hidden;
      margin-bottom: 2rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .content-wrapper:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0, 82, 204, 0.2);
    }
a {
  color: var(--blue);
}

a:hover {
  color: var(--blue-hover);
}
    .image-column {
      width: 20%;
      
      background: var(--gray-light);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      flex-direction: column;
      gap: 4%;
    }

    .image-column img {
	max-width: 100%;
	width: 100%;
      height: auto;
      object-fit: contain;
    }

    .text-column {
      width: 80%;
      padding: 2rem;
    }

    .text-column ul {
      list-style: none;
      padding-left: 0;
    }

    .text-column ul > li {
      position: relative;
      padding-left: 1.8rem;
      margin-bottom: 1rem;
    }

    .text-column ul > li::before {
      content: "★";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--blue);
      font-size: 1rem;
      line-height: 1.5;
    }

    .text-column ul ul > li::before {
      content: "–";
      color: #666;
    }

    footer {
      font-size: 0.9rem;
      color: #777;
      text-align: center;
      padding: 1rem 0;
      margin-top: auto;
    }

    footer a {
      color: var(--blue);
      text-decoration: none;
      font-weight: 500;
    }

    /* === Floating Login Panel === */
    .floating-login {
      position: fixed;
      top: 2rem;
      right: 1rem;
      background: white;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 220px;
      z-index: 999;
    }

    .floating-login form {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .floating-login input {
      padding: 0.5rem 0.7rem;
      font-size: 0.9rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .floating-login button {
      background: var(--blue);
      color: #fff;
      border: none;
      padding: 0.5rem 0.9rem;
      font-size: 0.9rem;
      border-radius: 6px;
      cursor: pointer;
    }

    .floating-login button:hover {
      background: #0041a8;
    }

    .login-error {
      color: #cc0000;
      font-size: 0.9rem;
      margin-top: 0.4rem;
    }

    @media (max-width: 768px) {
      .floating-login {
        position: static;
        width: 90%;
        margin-top: 1rem;
      }

      .content-wrapper {
        flex-direction: column;
        width: 95%;
      }

      .image-column,
      .text-column {
        width: 100%;
      }

      .image-column {
        padding: 0.5rem;
      }
    }
