    /* Color palette */
    :root {
      --s-blue: rgb(0, 53, 173);
      --s-red: rgb(220, 36, 31);
      --s-yellow: rgb(255, 206, 0);
      --s-green: rgb(0, 114, 41);
      --text-color: #333;
      --bg-color: #f8f8f8;
      --header-bg: linear-gradient(90deg, var(--s-blue) 0%, var(--s-red) 25%, var(--s-yellow) 50%, var(--s-green) 75%);
    }

    /* Base styles */
    body {
      margin: 0;
      padding: 0;
      font-family: sans-serif;
      font-size: 1.15em; /* Bigger default font size */
      background-color: var(--bg-color);
      color: var(--text-color);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      background: var(--header-bg);
      padding: 1.5rem;
      text-align: center;
      color: #fff;
    }

    /* Make the logo bigger */
    .logo {
      width: 200px; /* Increased size */
      max-width: 80%; /* Ensures logo fits on small screens */
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .header-title {
      margin: 0.5rem 0 0;
      font-size: 2rem; /* Larger text for heading */
    }

    .header-subtitle {
      font-size: 1.2rem;
      margin-top: 0.25rem;
    }

    main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem 1rem;
    }

    .content-box {
      background-color: #fff;
      border-radius: 8px;
      max-width: 700px;
      width: 100%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      padding: 2rem;
      text-align: left;
    }

    .content-box p {
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .contact {
      margin-top: 1.5rem;
      font-weight: bold;
      font-size: 1.1rem;
    }

    footer {
      background-color: #fff;
      text-align: center;
      padding: 1rem;
      font-size: 0.9rem;
      color: #666;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .header-title {
        font-size: 1.5rem;
      }
      .header-subtitle {
        font-size: 1rem;
      }
      .content-box {
        padding: 1rem;
      }
    }
