.page-header {
  background: linear-gradient(135deg, #8B7355 0%, #d4b483 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
}

.page-header h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.services-list {
  margin-bottom: 60px;
}

.services-grid-full {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139,115,85,0.15);
}

.service-full-card.reverse {
  direction: rtl;
}

.service-full-card.reverse .service-full-content {
  direction: ltr;
}

.service-full-image {
  overflow: hidden;
}

.service-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-full-card:hover .service-full-image img {
  transform: scale(1.05);
}

.service-full-content {
  padding: 40px;
  direction: ltr;
}

.service-full-content h2 {
  text-align: left;
  color: #2C2C2C;
  margin-bottom: 20px;
  font-size: 32px;
}

.service-full-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.service-full-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.service-full-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.service-full-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: bold;
}

.btn-service {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: #d4b483;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .service-full-card.reverse {
    direction: ltr;
  }
  
  .service-full-image {
    height: 300px;
  }
  
  .service-full-content {
    padding: 30px;
  }
  
  .service-full-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px;
  }
  
  .page-header h1 {
    font-size: 32px;
  }
  
  .service-full-image {
    height: 250px;
  }
  
  .service-full-content {
    padding: 20px;
  }
  
  .service-full-content h2 {
    font-size: 24px;
  }
}