.contact-section {
    padding: 3% 20%;
    background-color: #f8fafc;
    border-top: 2px solid #cbd5e1;
  }

  .contact-text-section{
    margin-top: 120px;
    margin-bottom: 50px;
}
  
  .contact-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    text-align: start;
    padding-left: 20%; /* Change from 200px to percentage */
    margin-bottom: 20px;
    color: black;
    letter-spacing: -0.2px;
    word-wrap: break-word;
    /*text-shadow: 0.001px 0.001px 1.5px #1E293B;*/
  }
  
  .contact-description {
    line-height: 1.3;
    font-size: 30px; 
    letter-spacing: 0.1px;
    margin-top: 20px;
    text-align: start;
    padding-left: 20%;
    padding-right: 20%;
    color: #475569;
  }
  
  .contact-form {
    background-color: white;
    padding: 2.5rem 3rem;
    border-radius: 11px;
    box-shadow: 0 1px 10px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: box-shadow 0.3s ease;
  }
  
  .contact-form:hover {
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background-color: white;
  }
  
  .contact-submit:active {
    transform: scale(0.98);
  }
  

  .alt-contact {
    margin-top: 30px;
    font-size: 16px;
    color: #334155;
    text-align: left;
  }
  
  .alt-contact a {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .alt-contact a:hover {
    color: #0f172a;
    text-decoration: underline;
  }
  

/* Mobile Styles */
@media screen and (max-width: 768px) {
  /* Contact Section */
  .contact-section {
      padding: 5% 10%; /* Adjust padding for smaller screens */
  }

  .contact-title {
      font-size: 43px; /* Smaller title size */
      padding-left: 0; /* Remove left padding */
      text-align: center; /* Center-align title */
      /*text-shadow: 0.001px 0.001px 1.5px #1E293B;*/
  }

  .contact-description {
      font-size: 18px; /* Smaller font size */
      padding-left: 10%; /* Adjust padding for smaller screens */
      padding-right: 10%; /* Adjust padding for smaller screens */
  }

  .contact-form {
      padding: 2rem 1.5rem; /* Reduce padding */
  }

  .form-group label {
      font-size: 0.9rem; /* Adjust font size of labels */
  }

  .form-group input,
  .form-group textarea {
      font-size: 0.95rem; /* Adjust input/textarea font size */
  }

  .alt-contact {
      font-size: 14px; /* Reduce font size of alternative contact */
  }
}