/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Josefin Sans', Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f6f8;
}


/* Section Layout */

.form-section {
  padding: 5rem 5rem 2rem 5rem;
}



.contact-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8rem 5rem 2rem 5rem;
  flex-wrap: wrap;
}

.contact-hero-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: left;
  align-items: left;
}

.contact-hero-image img {
  width: 100%;
  max-width: 700px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 100%;
}

/* Text Content */
.contact-content h1 {
  color: #023e8a;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.contact-content p {
  color: #023e8a;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.direct-email a {
  font-size: 1.2rem;
  color: #1eaace;
  text-decoration: none;
}

.direct-email a:hover {
  text-decoration: underline;
  color: #023e8a;
}

.direct-phone a { 
  font-size: 1.1rem;
  color: #1eaace;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  
  
}

.direct-phone a:hover {
  text-decoration: underline;
  color: #023e8a;
}

/* Form Styling */
.form-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  scroll-margin-top: 80px; /* match your header height */
}

/* Form Grid */
form fieldset {
  border: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1.5rem;
}

legend {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
}

/* Full-width elements (textarea & button) */
.full-width {
  grid-column: 1 / -1;
}


/* Inputs */
label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0066cc;
}

/* Button */
button {
   margin-top: 2rem;
  text-align: center;
  display: inline-block;
  background-color: #1e4e7a;   /* your deep blue */
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-width: 0;
}

button:hover {
  background-color: #1eaace;  /* lighter blue hover */
}

.contact-whn{
padding: 5rem 5rem 5rem 5rem;
}

.whatsnext h2 {
margin-bottom: 1.5rem;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  form fieldset {
    grid-template-columns: 1fr;
  }
  
  .contact-hero {
	  padding: 8rem 2rem 2rem 2rem;
  }

.form-section {
  padding: 3rem 2rem 2rem 2rem;
}

.contact-whn{
padding: 5rem 2rem 5rem 2rem;
}

}

