html {
  scroll-behavior: smooth;
}
/* Các quy tắc chung */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.navigation a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  font-size: 16px;
}

/* Phần chính */
.hero-section {
  position: relative;
  height: 400px;
  background-image: url(./img/simpa.jpg);
  background-size: 15%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-text {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}
/* Các quy tắc CSS cũ giữ nguyên */

/* Phần mới cho các dịch vụ */
.services-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.service-list {
  display: flex;
  flex-wrap: wrap; /* Cho phép các mục xuống dòng nếu không đủ chỗ */
  justify-content: center;
  gap: 30px; /* Tạo khoảng cách giữa các mục */
}

.service-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px); /* Hiệu ứng khi di chuột vào */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
  font-size: 20px;
  color: #007bff;
  margin-top: 0;
}

.service-item p {
  font-size: 16px;
  color: #666;
}
.logo {
  display: flex;
  flex-direction: column; /* Đặt các phần tử theo chiều dọc */
  align-items: flex-start; /* Căn lề trái các phần tử con */
}

.company-name {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0; /* Loại bỏ lề mặc định của thẻ p */
}

.contact-info {
  font-size: 14px;
  color: #666;
  margin-top: 5px; /* Tạo khoảng cách nhỏ với tên phòng khám */
  line-height: 1.5; /* Khoảng cách giữa các dòng */
}
/* Thêm quy tắc mới này vào cuối file */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
