html {
  scroll-padding-top: 120px;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav {
  background: #300e94;
  color: white;
  display: flex;
  align-items: center;
  padding: 15px;
}
nav img {
  height: 60px;
  width: auto;
  margin-right: 12px;
}
.company-info h1 {
  margin: 0;
  font-size: 22px;
}
.availability {
  color: #300e94;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  background-color: white;
  line-height: 1.2;
}
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 0 15px;
  margin-top: 150px;
}
.category {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.banner {
  height: 500px;
  background-size: cover;
  background-position: center;
}
.content {
  padding: 15px;
}
h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.phone {
  margin: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-text {
  font-size: 20px;
}
.call-btn {
  background: #300e94;
  padding: 10px 15px;
  border: none;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  display: inline-block;
  transition: background 0.3s ease;
  font-weight: 600;
}

.call-btn:hover {
  background: #4321c3;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  color: #555;
  font-size: 14px;
}
footer a {
  color: #300e94;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  nav {
    padding: 10px;
  }
  nav img {
    height: 50px;
  }
  .company-info h1 {
    margin: 0;
    font-size: 20px;
  }
  .banner {
    height: 250px;
  }
  .availability {
    padding: 5px;
  }
}
