* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: var(--header-height);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  height: 60px;
}

.slogan {
  font-size: 12px;
  color: #e67e22;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-btn {
  padding: 10px 20px;
  border: 2px solid black;
  text-transform: uppercase;
}

.salt-section {
  display: flex;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
}

.salt-img img {
  width: 300px;
  height: auto;
}

.salt-content h2 {
  color: #28a745;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
}

.salt-content p {
  margin-bottom: 20px;
  max-width: 600px;
}

.appointment-link {
  color: #333;
  text-decoration: underline;
}

.cta {
  background-color: #28a745;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 12px 24px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #111;
  color: white;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  font-size: 14px;
}

footer a {
  color: white;
  text-decoration: none;
}
