.contacte-container {
  max-width: 60%;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.header p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #099b57;
  outline: none;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: center;
  width: 100%;
}

.contact-form button,
.button-group button {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  min-width: 140px; 
}


.contact-form button[type="submit"],
.button-group .submit-btn {
  background-color: #099b57;
  color: white;
}

.contact-form button[type="submit"]:hover,
.button-group .submit-btn:hover {
  background-color: #54866f;
  transform: translateY(-2px);
}


.button-group .cancel-btn {
  background-color: transparent;
  border: 2px solid var(--error-text, #721c24);
  color: var(--error-text, #721c24);
}

.button-group .cancel-btn:hover {
  background-color: var(--error-text, #721c24);
  color: white;
  transform: translateY(-2px);
}


.form-response {
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}


@media (max-width: 768px) {
  .contacte-container {
    max-width: 90%;
    padding: 1.5rem 1rem;
  }
  
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form button,
  .button-group button {
    width: 100%;
    max-width: 300px;
  }
  
  .header h1 {
    font-size: 2rem;
  }
}


