.location-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
  text-align: center;
}

.location-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.location-section p {
  margin: 6px 0;
  font-size: 16px;
}

.location-section a {
  color: #007bff;
  text-decoration: none;
}

.map-embed {
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.get-in-touch-section {
  background-color: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.get-in-touch-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 800;
}

.get-in-touch-section .subheading {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
}

.method {
  flex: 1 1 220px;          /* Slightly smaller width */
  background: #fff;
  padding: 15px 18px;       /* Reduced padding */
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  font-size: 14px;          /* Slightly smaller text */
}


.method h3 {
  font-size: 18px;          /* Slightly smaller heading */
  margin-bottom: 8px;
  color: #333;
}
    
.method p {
  font-size: 14px;          /* Consistent smaller paragraph text */
  color: #444;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .contact-methods {
    flex-direction: column;
    gap: 20px;
  }

  .method {
    width: 100%;
    font-size: 13px;
  }
}