* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.6;
  color: #7c6d69;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  max-height: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #7c6d69;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d17e6a;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Philosopher", serif;
  font-size: 3.5rem;
  color: #d17e6a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text h2 {
  font-family: "Philosopher", serif;
  font-size: 2.2rem;
  color: #7c6d69;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Specialties Section */
.specialties {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h3 {
  font-family: "Philosopher", serif;
  font-size: 2.8rem;
  color: #7c6d69;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specialty-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(209, 125, 106, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specialty-card h4 {
  font-family: "Philosopher", serif;
  color: #7c6d69;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h3 {
  font-family: "Philosopher", serif;
  font-size: 2.5rem;
  color: #7c6d69;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #d17e6a;
  color: white;
}

.btn-primary:hover {
  background-color: #b86a58;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #d17e6a;
  border: 2px solid #d17e6a;
}

.btn-secondary:hover {
  background-color: #d17e6a;
  color: white;
}

/* Footer */
footer {
  background-color: #252d35;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h5 {
  color: #d17e6a;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #d17e6a;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .section-title h3 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
