* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .contact-container {
      max-width: 600px;
      width: 100%;
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
      font-family: 'Arial', sans-serif;
      overflow: hidden;
    }

    .contact-header {
      background: #f8f9fa;
      padding: 30px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .contact-header h2 {
      color: #333;
      margin-bottom: 10px;
      font-size: 28px;
    }

    .contact-header p {
      color: #666;
      font-size: 16px;
    }

    .contact-body {
      padding: 30px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      color: #555;
      font-weight: 500;
      font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 15px;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #667eea;
      box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      background: #667eea;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
      position: relative;
    }

    .submit-btn:hover {
      background: #764ba2;
    }

    .submit-btn:disabled {
      background: #a0a0a0;
      cursor: not-allowed;
    }

    .contact-footer {
      padding: 30px;
      background: #f8f9fa;
      border-top: 1px solid #eee;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #555;
      font-size: 14px;
    }

    .info-item i {
      width: 20px;
      color: #667eea;
      font-size: 16px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #ddd;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: #fff;
      border-radius: 50%;
      color: #667eea;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .social-links a:hover {
      background: #667eea;
      color: #fff;
      transform: translateY(-3px);
    }

    /* Navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: white;
            border-radius: 4rem;
            box-shadow: 0 10px 30px -10px #00000020;
            margin-bottom: 3rem;
            border: 1px solid #e2e8f0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(145deg, #2563eb, #1e40af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            text-decoration: none;
            color: #475569;
            font-weight: 500;
            transition: 0.15s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #2563eb;
        }
        .nav-links a.active {
            font-weight: 600;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
    /* Responsive */
    @media (max-width: 480px) {
      .contact-header,
      .contact-body,
      .contact-footer {
        padding: 20px;
      }
    }
    /* tiny status */
    .form-status {
      margin-top: 15px;
      text-align: center;
      font-size: 0.9rem;
    }
    .success-msg {
      color: #2e7d32;
    }
    .error-msg {
      color: #c62828;
    }