/* Services About Module Styles */
.mod-services-about {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}

/* Container for max-width */
.services-about-container {
  max-width: 1235px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Main Grid Layout */
.services-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Left Column - About Content */
.about-content-column {
  text-align: right;
}

.about-title {
  margin-bottom: 2rem;
}

.about-title h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.about-description {
  margin-bottom: 1.5rem;
}

.about-description p {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* About Button */
.about-button-container {
  margin-top: 2rem;
}

.about-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ea580c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-button:hover {
  color: #f97316;
}

.about-button span {
  color: inherit;
  transition: color 0.3s ease;
}

.about-button-arrow {
  width: 2rem;
  transition: color 0.3s ease;
  transform: rotate(180deg);
  font-size: 1.25rem;
  color: inherit;
}

.about-button:hover .about-button-arrow {
  color: #f97316;
}

/* Right Column - Services List */
.services-list-column {
  text-align: right;
}

.services-list {
  border-top: 1px solid #374151;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #374151;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-item:hover {
  color: #ea580c;
}

.service-item:hover .service-arrow {
  color: #ea580c;
  transform: rotate(180deg) translateX(-0.5rem);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
}

.service-item:hover .service-title {
  color: #ea580c;
}

.service-arrow {
  width: 2.5rem;
  color: #6b7280;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-title h2 {
    font-size: 2rem;
  }

  .services-about-grid {
    gap: 3rem;
    padding: 0 1rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .mod-services-about {
    padding: 3rem 0;
  }

  .about-title h2 {
    font-size: 1.75rem;
  }

  .services-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .services-list-column {
    text-align: center;
  }

  .about-content-column {
    text-align: center;
  }



  .service-title {
    font-size: 1.125rem;
  }

  .about-description p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .about-title h2 {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .about-description p {
    font-size: 0.875rem;
  }

  .about-button {
    font-size: 1rem;
  }
}
