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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* 10px = 1rem */
}

.indicator {
  margin-top: 80px;
  width: 100%;
  height: 15vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  background: linear-gradient(to right, #253898, #5737d6);
}

.indicator .navigation {
  padding: 10px;
  margin-left: 140px;
}

.navigation a {
  text-decoration: none;
  font-size: 2rem;
  font-family: "Fira Sans", sans-serif;
  color: #ffffff;
}

/* Services Table Styling */
.content {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 50px 140px;
}

.page-title {
 
  font-size: 4rem;
  font-family: "Fira Sans", sans-serif;
  color: #758283;
  font-weight: 300;
  margin-bottom: 20px;
  margin-top: 8rem;
  text-align: center;
}

.services-table {
  width: 90%;
  border-collapse: collapse;
  margin: 20px auto;
  font-family: "Fira Sans", sans-serif;
  font-size: 1.6rem;
}

.services-table th,
.services-table td {
  padding: 15px;
  text-align: left;
  border: none;
}

.services-table th {
  background: linear-gradient(to right, #253898, #5737d6);
  color: #ffffff;
  font-weight: bold;
}

.services-table tr:hover {
  background-color: #f9f9f9;
}

.action-links {
  display: flex;
  gap: 10px;
  border: none;
}

.action-links a {
  text-decoration: none;
  color: #253898;
  font-size: 1.6rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #253898;
}

.action-links a:hover {
  background-color: #253898;
  color: white;
  border: 1px solid #253898;
}

.new-service-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #253898, #5737d6);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-family: "Fira Sans", sans-serif;
  transition: all 0.3s ease;
  text-align: center;
  align-items: center;
}
.button-container {
    text-align: center;
  }
  
.new-service-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 56, 152, 0.2);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
  .content {
    padding: 50px 70px;
  }
  .indicator .navigation {
    margin-left: 70px;
  }
}

@media screen and (max-width: 456px) {
  html {
    font-size: 45%;
  }
  .content {
    padding: 50px 20px;
  }
  .indicator .navigation {
    margin-left: 20px;
  }
  .services-table {
    font-size: 1.4rem;
  }
  .action-links {
    flex-direction: column;
  }
}
