.services-page {
  --primary-blue: #0d31bb;
  --dark-text: #1a202c;
  --light-text: #4a5568;
  --background-color: #FFFFFF;
  --border-color: #E2E8F0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
}

.services-page .services-intro {
  padding: 48px 6% 0;
  max-width: 1320px;
  margin: 0 auto;
}
.services-page .services-intro .intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.services-page .services-intro h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--dark-text);
}
.services-page .services-intro p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--light-text);
  margin: 0;
}


.services-page .main-container {
  display: flex;
  padding: 72px 6%;
  max-width: 1320px;
  margin: 0 auto;
  gap: 96px;
  align-items: flex-start;
}


.services-page .sidebar {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: 70px;
}
.services-page .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-page .sidebar li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  text-decoration: none;
  color: var(--light-text);
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  border-left: 4px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.services-page .sidebar li a .nav-ikon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
}
.services-page .sidebar li a:hover {
  background-color: #F7FAFC;
  color: var(--dark-text);
}
.services-page .sidebar li a.active {
  color: var(--primary-blue);
  font-weight: 700;
  background-color: #EDF2F7;
  border-left: 4px solid var(--primary-blue);
}


.services-page .sidebar-toggle {
  display: none;
}


.services-page .content {
  width: 100%;
}
.services-page .content-section {
  display: none;
}
.services-page .content-section.active {
  display: block;
}
.services-page .content-section img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 28px;
}
.services-page .content-section h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--dark-text);
}
.services-page .content-section p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--light-text);
}


@media (max-width: 800px) {
  .services-page .main-container {
    flex-direction: column;
    padding: 28px 5%;
    gap: 32px;
  }
  .services-page .services-intro {
    padding: 28px 5% 0;
  }
  .services-page .services-intro h2 {
    font-size: 32px;
    text-align: center;
  }
  .services-page .services-intro p {
    font-size: 17px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .services-page .sidebar {
    width: 100%;
    position: static;
  }

  .services-page .sidebar-toggle {
    display: none;
  }
  .services-page .sidebar .sidebar-links {
    display: block;
    margin-top: 10px;
  }

  .services-page .content-section h2 {
    font-size: 32px;
  }
  .services-page .content-section p {
    font-size: 17px;
  }

  .services-page .content-section {
    text-align: center;
  }
  .services-page .content-section p {
    margin-left: auto;
    margin-right: auto;
  }
}
