body, .contact-main-bg {
  background: #f7f9fc;
  font-family: 'Inter', Arial, sans-serif;
}
.contact-hero {
  background: none;
  padding: 2.5rem 0 1.2rem 0;
  text-align: left;
}
.contact-hero h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #233045;
  margin-bottom: 0.5rem;
}
.contact-hero p {
  color: #6b7a90;
  font-size: 1.1rem;
}

.contact-section {
  padding: 0 0 2.5rem 0;
}
.contact-flex-modern {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-form-card, .contact-info-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(74,144,226,0.08);
  padding: 2.2rem 2rem 2rem 2rem;
  flex: 1 1 0;
  min-width: 320px;
  max-width: 480px;
}
.contact-form-card {
  margin-right: 0;
}
.contact-info-card {
  margin-left: 0;
  min-width: 260px;
  max-width: 350px;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  color: #233045;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.contact-form-modern input,
.contact-form-modern textarea {
  font-family: inherit;
  font-size: 1.05rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #f7f9fc;
  color: #233045;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px #eaf4fb;
}
.contact-form-modern input:hover,
.contact-form-modern textarea:hover {
  border-color: #b3d4fc;
}
.btn-modern-primary {
  background: #4a90e2;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 1rem 2.2rem;
  margin-top: 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(74,144,226,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: block;
  width: 100%;
  max-width: 260px;
  text-align: center;
}
.btn-modern-primary:hover, .btn-modern-primary:focus {
  background: #2563a6;
  box-shadow: 0 4px 16px 0 rgba(74,144,226,0.18);
  transform: translateY(-2px) scale(1.02);
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-info-modern h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #233045;
  margin-bottom: 0.7rem;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: #233045;
  margin-bottom: 0.5rem;
}
.contact-icon {
  color: #4a90e2;
  font-size: 1.2rem;
  min-width: 22px;
  text-align: center;
}
.contact-info-modern a {
  color: #2563a6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-modern a:hover {
  color: #4a90e2;
  text-decoration: underline;
}
.divider {
  border-bottom: 1.5px solid #e5e7eb;
  margin: 1.1rem 0 0.7rem 0;
}
.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.98rem;
  color: #374151;
}
.business-hours span {
  font-weight: 500;
  color: #233045;
}
@media (max-width: 900px) {
  .contact-flex-modern {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-form-card, .contact-info-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    box-sizing: border-box;
  }
  .btn-modern-primary {
    max-width: 100%;
  }
  .contact-form-modern input,
  .contact-form-modern textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 0.9rem;
  }
  .contact-info-modern {
    gap: 1.1rem;
  }
  .contact-info-row {
    font-size: 0.98rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    word-break: break-word;
  }
  .business-hours {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .contact-hero {
    padding: 1.2rem 0 0.7rem 0;
  }
  .contact-hero h1 {
    font-size: 1.3rem;
  }
  .contact-hero p {
    font-size: 0.98rem;
  }
  .contact-section {
    padding: 0 0 1.2rem 0;
  }
  .contact-form-card, .contact-info-card {
    padding: 0.7rem 0.3rem 0.9rem 0.3rem;
    border-radius: 12px;
  }
  .form-group label {
    font-size: 0.97rem;
  }
  .btn-modern-primary {
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
  }
  .contact-info-modern h2 {
    font-size: 1.05rem;
  }
  .contact-info-row {
    font-size: 0.95rem;
    gap: 0.4rem;
  }
  .contact-icon {
    font-size: 1.05rem;
    min-width: 18px;
  }
  .divider {
    margin: 0.7rem 0 0.5rem 0;
  }
} 