* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f4f6f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.page-header {
  background: linear-gradient(90deg, #1c1f26, #2b2f3a);
  padding: 40px 0;
  color: #fff;
}

.breadcrumb {
  font-size: 14px;
  color: #7da8ff;
  margin-bottom: 10px;
}

.breadcrumb span {
  margin: 0 5px;
}

.page-header h1 {
  font-size: 36px;
}

/* INTRO */
.intro {
  padding: 50px 0;
  line-height: 1.8;
  font-size: 15px;
  color: #666;
}

/* SERVICE SECTION */
.service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}

.service.reverse {
  flex-direction: row-reverse;
}

.service-left {
  flex: 1;
}

.service-left h2 {
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 600;
}

.service-left img {
  max-width: 100%;
}

.service-right {
  flex: 1;
}

.service-right p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}

.video {
  margin-top: 25px;
}

.video iframe {
  width: 100%;
  height: 250px;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .service {
    flex-direction: column;
    text-align: center;
  }

  .service.reverse {
    flex-direction: column;
  }

  .service-left img {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .page-header h1 {
    font-size: 26px;
  }

  .intro {
    font-size: 14px;
  }
}
