

    /* Trigger Button */
    .open-popup-btn {
      padding: 12px 20px;
      background: #2c3e50;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
    }
    .open-popup-btn:hover {
      background: #1a242f;
    }

    /* Popup Overlay */
    .popup {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Popup Content */
    .popup-content {
      background: #fff;
      margin: 5% auto;
      padding: 20px;
      border-radius: 10px;
      text-align: left;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      animation: slideDown 0.3s ease;
      position: relative;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #666;
    }

    .open-popup-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .open-popup-input, .open-popup-textarea, .open-popup-button {
      padding: 10px;
      font-size: 14px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .open-popup-button[type="submit"] {
      background: #2c3e50;
      color: white;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }
    .open-popup-button[type="submit"]:hover {
      background: #1a242f;
    }

    .formstatus {
      font-size: 14px;
    }
    .success { color: green; }
    .error { color: red; }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    /* Custom styles for the contact form */
		#contactForm {
			flex: 1;
	    background: #fff;
	    padding: 2rem;
	    border-radius: 10px;
	    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
		  display: flex;
		  flex-direction: column;
		  gap: 1rem;
		}
		#contactForm input, #contactForm textarea, #contactForm button {
			width: 100%;
		  padding: 0.8rem;
		  border-radius: 5px;
		  border: 1px solid #ccc;
		  font-size: 1rem;
		}
		#contactForm button {
			background: #007bff;
		  color: white;
		  border: none;
		  cursor: pointer;
		  font-size: 1.1rem;
		  transition: background 0.3s ease;
			width: 100px;
		}
		#contactForm button:hover {
			background: #0056b3;
		}