
  
/* Typography */
body, h1, h2, h3, h4, h5, h6, p, a {
    font-family: 'Prompt', sans-serif !important;
}
      body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #333333;
}

h1, h2, h3, h4, h5, h6,
h1.h1, h2.h2, h3.h3, h4.h4, h5.h5, h6.h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
}

b, strong, .strong {
  font-weight: 600;
}

p {
  font-weight: 400;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: #777;
  margin-top: 0;
  margin-bottom: 1rem;
}
  
/* Hero Container */
.hero-container {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-radius: 8px;
}

.hero-text {
  color: white;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form Column */
.form-column {
  background: white;
  padding: 0;
}

/* Form Styles */
.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
  padding: 12px 25px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: 'Open Sans', sans-serif;
}



/* Map Column */
.map-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border-radius: 8px;
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .container {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .container {
    padding: 2rem 1rem;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-overlay {
    padding: 0 1rem;
  }
  
  .container {
    padding: 1rem;
  }
  
  .contact-info {
    padding: 1rem;
  }
}