
    /* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('/assets/images/nightcity.jpg') no-repeat center center/cover; /* Fallback JPG */
    height: 100vh;
    color: #fff;
}

@supports (background-image: url('/assets/images/nightcity.webp')) {
    body {
        background: url('/assets/images/nightcity.webp') no-repeat center center/cover; /* WebP version */
    }
}

    .contact-container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      height: 100%;
      padding: 20px;
    }

    .contact-box {
      background: rgba(50, 50, 50, 0.8); /* Semi-transparent grey */
      padding: 20px;
      border-radius: 10px;
      width: 505px;
      height: 580px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .contact-box h1 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: #f5f5f5;
    }

    .contact-box p {
      margin: 10px 0;
      line-height: 1.6;
      color: #ddd;
    }

    .contact-box a {
      color: #8db600;
      text-decoration: none;
    }

    .contact-box a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .contact-container {
        justify-content: center;
        padding: 10px;
      }

      .contact-box {
        width: 90%;
        text-align: center;
      }
    }
