    body {
      font-family: "Segoe UI", sans-serif;
      margin: 0;
      padding: 20px;
      background: #f9fdf9;
    }

    header {
      text-align: center;
      margin-bottom: 30px;
    }

    header h1 {
      color: #2e7d32;
      margin-bottom: 10px;
    }

    header p {
      color: #555;
      font-size: 1.1rem;
    }

    .contact-container {
      max-width: 700px;
      margin: auto;
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    form {
      margin-bottom: 25px;
    }

    form h2 {
      color: #2e7d32;
      margin-bottom: 20px;
      text-align: center;
    }

    label {
      display: block;
      margin: 10px 0 5px;
      color: #333;
      font-weight: bold;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #bbb;
      border-radius: 8px;
      margin-bottom: 15px;
      font-size: 1rem;
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    button {
      width: 100%;
      padding: 12px;
      background: #4CAF50;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    button:hover {
      background: #388e3c;
    }


    .contact-info {
      margin-top: 20px;
    }

    .contact-info p {
      color: #555;
      font-size: 1rem;
    }

    .contact-info .phone {
      font-size: 1.2rem;
      font-weight: bold;
      color: #2e7d32;
    }

    .email-id a {
      text-decoration: none;
      color: #2e7d32;
      font-weight: bold;
    }