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

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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
}

.logo strong {
  font-size: 1.5rem;
  color: #6b1d2f;
  display: block;
}

.logo p {
  font-size: 0.85rem;
  color: #c59b27;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #6b1d2f;
  font-weight: bold;
}

nav a:hover {
  color: #c59b27;
}

.btn-phone,
.btn-main {
  background-color: #6b1d2f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.btn-main {
  background-color: #c59b27;
  display: inline-block;
  margin-top: 15px;
  font-style: italic;
}

.btn-phone:hover,
.btn-main:hover {
  opacity: 0.9;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f3ea;
}

.badge {
  display: inline-block;
  background-color: #c59b27;
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #6b1d2f;
}

.hero .sub {
  color: #c59b27;
  font-style: italic;
  margin-bottom: 15px;
}

.hero .desc {
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 50px 5%;
  text-align: center;
}

.alt-bg {
  background-color: #fcfcfc;
}

.section h2 {
  color: #6b1d2f;
  margin-bottom: 30px;
}

.steps-grid,
.about-flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card,
.about-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding-bottom: 20px;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card img,
.about-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

.step-card .num {
  width: 35px;
  height: 35px;
  background-color: #6b1d2f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -19px;
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.step-card h3,
.about-box h3 {
  color: #6b1d2f;
  margin: 10px 0;
}

.step-card p,
.about-box p {
  padding: 0 15px;
  font-size: 0.9rem;
  color: #666;
}

.map-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  background-color: #f4eee6;
  padding: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.contact-info h3 {
  color: #6b1d2f;
  margin-bottom: 5px;
}

footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

footer a {
  color: #c59b27;
  text-decoration: none;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    gap: 12px;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
  }

  .btn-phone {
    position: static;
  }

  html,
  body {
    overflow-x: hidden;
  }
}
