:root {
  --primary-bg: #000000;
  --text-white: #ffffff;
}

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

body {
  font-family: Arial, sans-serif;
}

.services-section {
  background-color: #f5f5f5;
  color: black;
  padding: 4rem 2rem;
  min-height: 100vh;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #000;
}

.services-header h1 {
  font-size: 4rem;
  font-weight: 300;
  color: #000;
  margin: 0;
}

.service-accordion {
  background-color: white;
  margin-bottom: 1px;
  border-radius: 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-header h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.accordion-arrow {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.arrow-text {
  font-size: 1rem;
  color: #666;
}

.arrow-icon {
  font-size: 1.2rem;
  color: #666;
  transition: transform 0.3s ease;
}

.accordion-header:hover .arrow-icon {
  color: #333;
}

.accordion-content {
  display: none;
  padding: 0 2rem 2rem 2rem;
  background-color: white;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-intro {
  margin-bottom: 1rem;
}

.service-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.service-level {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.service-level:last-child {
  border-bottom: none;
}

.service-level h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000;
}

.service-level h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 1.5rem 0 0.5rem 0;
  color: #000;
}

.service-level p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.service-level ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.service-level li {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-section {
    padding: 2rem 1rem;
  }

  .services-header h1 {
    font-size: 2.5rem;
  }

  .accordion-header {
    padding: 1.5rem;
  }

  .accordion-header h2 {
    font-size: 1.5rem;
  }

  .accordion-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .service-level h3 {
    font-size: 1.3rem;
  }

  .service-level h4 {
    font-size: 1.2rem;
  }
}
