/* Contact Page Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333;
  }
  
  .contact-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-heading {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .contact-heading h1 {
    font-size: 2.5rem;
    color: #1e5128;
    margin-bottom: 10px;
  }
  
  .contact-heading p {
    font-size: 1.1rem;
    color: #555;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .contact-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .contact-info h3 {
    font-size: 1.6rem;
    color: #1e5128;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form label {
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
    background: #fefefe;
  }
  
  .contact-form button {
    background-color: #1e5128;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #2a7a3b;
  }
  
  .phone-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center; /* Align both inputs vertically */
  }
  
  .phone-wrapper input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #fefefe;
    width: 100%;
    margin-bottom: 0 !important; /* Prevent stacking extra space */

  }
  
  #country-code {
    max-width: 80px;
    flex-shrink: 0;
  }
  .insta-link {
  text-decoration: none;
  color: inherit;
}

.insta-link img {
  width: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
  