* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fonts */
:root {
    --navbar-main-font: "Outfit", sans-serif;
    --navbar-heading-font: "Kavoon", serif;
    --navbar-heading-font-size: 16px;
}

.servicespage-main {
  background: #F5AD18;
  padding: 10px 20px;
  box-sizing: border-box;
  /* font-family: 'Arial', sans-serif; */
}

.servicespage-title-container {
  text-align: center;
  margin-bottom: 50px;
    font-family: var(--navbar-heading-font);
}

.servicespage-subtitle {
      font-family: var(--navbar-heading-font);

  color: #9E1C60;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.servicespage-main-title {
  font-size: 1.6rem;
  font-weight: bold;
  color:white;
    font-family: var(--navbar-main-font);

}

.servicespage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.servicespage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  /* border-bottom: 1px dotted #ccc; */
  border-bottom: 1px dotted rgba(255, 255, 255, 0.736);
  padding-bottom: 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.servicespage-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  /* border-radius: 50%; */
  object-fit: cover;
  flex-shrink: 0;
}

.servicespage-content {
  flex: 1;
  min-width: 0;
}

.servicespage-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

.servicespage-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
      font-family: var(--navbar-heading-font);

}

.servicespage-dotted-line {
  flex: 1;
  min-width: 20px;
  height: 1px;
  /* border-bottom: 2px dotted #999; */
  border-bottom: 2px dotted white;
  overflow: hidden;
}

.servicespage-btn {
  background-color: #9E1C60;
  color: white;
  border: none;
  padding: 5px 12px;
  font-size: 0.85rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.servicespage-btn:hover {
  background-color: #9E1C60;
}

.servicespage-item p {
  font-size: 0.95rem;
  color:white;
  margin-top: 6px;
  line-height: 1.5;
      font-family: var(--navbar-main-font);

}

/* Media Queries — same as before, just replace class names */
@media (max-width: 1124px) {
  .servicespage-grid {
    grid-template-columns: 1fr;
    padding: 0 70px;
  }

  .servicespage-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .servicespage-img {
    width: 70px;
    height: 70px;
  }

  .servicespage-dotted-line {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .servicespage-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .servicespage-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .servicespage-img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .servicespage-main {
  padding: 17px 20px;
  
}
  .servicespage-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 5px;
      gap: 10px;
     /* background-color: red; */
  }

  .servicespage-grid {
    padding: 0 0px;
      gap: 15px 10px;
  }
  .servicespage-img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
   
  }

  .servicespage-header {
    flex-direction: column;
    align-items: center;  
    gap: 5px;
  }

  .servicespage-dotted-line {
    display: none;
  }
}
