
.contact-section {
  max-width: 800px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-section p {
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.2rem;
}

.contact-info h3 {
  margin-top: 1.5rem;
  color: #222;
}

.contact-info p a {
  color: #007bff;
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}

.map iframe {
  width: 100%;
  height: 300px;
  margin-top: 1rem;
  border-radius: 6px;
}

.whatsapp-btn {
  text-align: center;
  margin-top: 2rem;
}

.whatsapp-btn a {
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.whatsapp-btn a:hover {
  background-color: #1da851;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header/Hero Section */
.hero {
  background: linear-gradient(rgba(117, 70, 71, 1), rgba(0, 0, 0, 0.5)), url('images/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #218838;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

/* Services */
.services ul,
.features ul {
  list-style: none;
  padding: 0;
}

.services li,
.features li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Testimonials */
.testimonials blockquote {
  font-style: italic;
  margin: 10px 0;
  background: #f1f1f1;
  padding: 10px;
  border-left: 5px solid #28a745;
}

/* Gallery */
.gallery img {
  width: 200px;
  height: auto;
  margin: 10px;
  border-radius: 8px;
}

.social-links {
  text-align: center;
  margin: 20px 0;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  font-size: 24px;
  color: #fff;
  background: #3b5998;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a.instagram {
  background: #E4405F;
}

.social-links a.linkedin {
  background: #0077B5;
}

.social-links a:hover {
  opacity: 0.8;
}

.doctor-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}

.doctor-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.doctor-card img {
  width: 180px;
  border-radius: 8px;
}

.doctor-info {
  flex: 1;
  text-align: left;
}

/* Footer */
footer {
  background: #222;
  color: #ddd;
  text-align: center;
  padding: 20px;
}

footer nav a {
  color: #ddd;
  text-decoration: none;
  margin: 0 10px;
}

footer nav a:hover {
  text-decoration: underline;
}