:root {
    --dark-navy: #04305F;
    --strong-blue: #04427C;
    --sky-blue: #126CAE;
    --sky-blue-dark: #0e4d80;
    --light-blue: #1A8CD8;
    --eco-green: #089E77;
    --light-bg: #f9f9f9;
    --text-dark: #222;
    --text-light: #fff;
  }

.contact-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
  }
  
  .contact-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-header p {
    color: var(--text-dark);
    font-size: 1.35rem;
  }

  .contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 2rem;
    background: #fff;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .contact-info, .contact-form {
    flex: 1 1 300px;
    background: #f2f2f2;
    padding: 2rem;
    border-radius: 8px;
    min-width: 260px;
    max-width: 500px;
    box-sizing: border-box;
  }
  
  .contact-info h2,
  .contact-form h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'HeadingFont', 'Segoe UI', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
  }
  
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .contact-info li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    word-break: break-word;
    flex-wrap: wrap;
  }
  
  .contact-info li span {
    font-size: 1.3rem;
    margin-right: 0.3rem;
  }
 
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form button {
    background: var(--dark-navy);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .map-section {
    padding: 2rem;
    text-align: center;
  }

  .map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 12px;
  }

/* STATUS PAGE */

.form-status {
    padding: 10px;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 500;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.loading {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive styles */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 1.2rem 0.5rem;
    gap: 1.2rem;
  }
  .contact-info, .contact-form {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem;
    margin: 0 auto;
  }
  .map-section {
    padding: 1rem 0.5rem;
  }
  .map-section iframe {
    height: 250px;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
  .contact-header p {
    font-size: 1rem;
  }
  .contact-info li {
    font-size: 1rem;
  }
  .contact-info li span {
    font-size: 1.1rem;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 0.7rem;
  }
}