body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
}

/* .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
} */

/* Hero */
.hero {
  /* background: #1c1543;  */
  color: #fff;
  padding: 0;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  margin: 30px auto auto auto;
}
.hero p {
  color: #ddd;
  max-width: 600px;
}
/* Contact Options */
/* grid layout for these lives in style.css - keep only the typeface here */
.contact-options {
  font-family: "Poppins", sans-serif;
}

/* card layout now lives in style.css (.contact-card) - this sheet loads after
   it, so the old fixed width and centring were overriding the new design */
.contact-card {
  text-align: left;
}



.icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #6a49f2;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1c1543;
}

.contact-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.contact-card strong {
  color: #1c1543;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #6a49f2;
  color: #fff;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #5433d8;
  color: black;
}

@media (max-width: 768px) {
  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Get in Touch Section */
.form-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.form-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.form-container {
  flex: 1;
  min-width: 350px;
}

.form-container h2 {
  font-size: 2rem;
  color: #1c1543;
  margin-bottom: 10px;
}

.form-container p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
  background-color: #fff;
}

.form-row input:focus {
  border-color: #6a49f2;
  outline: none;
}

.btn {
  padding: 14px 28px;
  background-color: #6a49f2;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #5433d8;
}

.form-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .form-container,
  .form-image {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

/* Offices Section */
.offices {
  text-align: center;
  background: #ffffff;
  padding: 80px 0;
}
/* legacy .office-* tile styles removed - the office card now uses the
   shared design in style.css */
