body {
  background-color: #ffffff;
  color: #333333;
}

.turnkey-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.expertise-label {
  font-size: 16px;
  letter-spacing: 3px;
  color: #a0522d;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.turnkey-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #111111;
  text-transform: uppercase;
}

.turnkey-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  max-width: 900px;
  margin-bottom: 60px;
}

.projects-accordion {
  margin-top: 60px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.accordion-item.active {
  border-bottom-color: rgba(0, 0, 0, 0.2);
}

.accordion-header {
  padding: 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.accordion-header:hover {
  padding-left: 10px;
}

.accordion-title {
  font-size: 24px;
  font-weight: 500;
  color: #111111;
  margin: 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-title a {
  color: #a0522d;
  text-decoration: none;
  font-weight: 900;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-title a:hover {
  color: #a0522d;
  text-decoration: none;
}

.accordion-item.active .accordion-title a {
  color: #a0522d;
}

.accordion-item.active .accordion-title {
  color: #a0522d;
}

.accordion-icon {
  font-size: 18px;
  color: #111111;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 20px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #a0522d;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease-in-out;
  padding: 0;
  opacity: 0;
}

.accordion-item.active .accordion-content {
  max-height: 3000px;
  padding: 40px 0 50px;
  opacity: 1;
}

.project-details {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.project-image-wrapper:hover .project-image {
  transform: scale(1.05);
}

.project-brief {
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.project-brief h4 {
  color: #a0522d;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-brief h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project-brief h4 a:hover {
  color: #8b4513;
  text-decoration: none;
}

.project-brief p {
  margin-bottom: 15px;
}

.events-description {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.events-description h4 {
  color: #a0522d;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.events-description h4 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.events-description h4 a:hover {
  color: #8b4513;
  text-decoration: none;
}

.events-description p {
  margin-bottom: 15px;
}

.design-stages {
  margin-top: 30px;
}

.design-stages h5 {
  color: #111111;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.design-stages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.design-stages ul li {
  padding: 8px 0;
  color: #666666;
  position: relative;
  padding-left: 25px;
}

.design-stages ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a0522d;
  font-weight: bold;
}

.sub-projects {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sub-project-item {
  margin-bottom: 30px;
}

.sub-project-item h5 {
  color: #a0522d;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.sub-project-item p {
  color: #666666;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .turnkey-title {
    font-size: 48px;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .turnkey-title {
    font-size: 36px;
  }

  .turnkey-description {
    font-size: 16px;
  }

  .accordion-title {
    font-size: 20px;
  }

  .turnkey-content {
    padding: 0 20px;
  }
}
