body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}

.services-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #222;
}

.services-header p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* Service Item */
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 1rem;
  color: #555;
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: black;
  color: gold;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: gold;
  color: black;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  object-fit: cover;
}

/* 📍 Address Section */
.address-section {
  background-color: black;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

.address-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.address-section p {
  font-size: 1rem;
  margin: 5px 0;
}

.address-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: gold;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.address-btn:hover {
  background-color: white;
  color: black;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .service-item.reverse {
    flex-direction: column;
  }

  .service-image img {
    max-width: 100%;
  }

  .services-header h2 {
    font-size: 2rem;
  }
}
