 body {
      background: rgba(227, 227, 244, 0.85);  
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }
    .contact-form-container {
      background: white;
      max-width: 420px;
      margin: 50px auto;
      padding: 30px 25px;
      border-radius: 12px;
      box-shadow: 0 3px 15px rgba(40, 60, 90, 0.1);
      color: #111;
    }
    .contact-form-container h2 {
      text-align: center;
      margin-bottom: 18px;
      color: #3178c6;
    }
    label {
      display: block;
      font-weight: 600;
      margin: 12px 0 6px 0;
    }
    input[type="text"], input[type="email"], textarea {
      width: 100%;
      padding: 9px 12px;
      border: 1px solid #a9c2dc;
      border-radius: 6px;
      font-size: 16px;
      box-sizing: border-box;
      background: #f9fcff;
      color: #212121;
    }
    select {
      width: 100%;
      padding: 9px 12px;
      border: 1px solid #a9c2dc;
      border-radius: 6px;
      font-size: 16px;
      box-sizing: border-box;
      background: #f9fcff;
      color: #212121;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%204%205%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-width%3D%221.5%22%20d%3D%22M0%200l2%202l2-2zM0%205l2-2l2%202z%22/%3E%3C/svg%3E');
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 12px 15px;
    }
    textarea {
      resize: vertical;
      min-height: 80px;
    }
    button[type="submit"] {
      margin-top: 15px;
      width: 100%;
      padding: 12px 0;
      background-color: #3178c6;
      color: white;
      border: none;
      border-radius: 7px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.23s ease;
    }
    button[type="submit"]:hover {
      background-color: #255f99;
    }