.elementor-4575 .elementor-element.elementor-element-ebb1d7a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-37b7988 *//* Presentation Page Styles */
.presentation-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.golden-title {
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.subtitle {
  font-size: 1.60rem;
  color: #666;
  text-align: center;
  margin-bottom: 2rem;
}

.intro-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.intro-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

.service-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-item,
.feature-item {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-item:hover,
.feature-item:hover {
  transform: translateY(-5px);
}

.service-item h3,
.feature-item h3 {
  color: #333;
  font-size: 1.50rem;
  margin-bottom: 1rem;
}

.service-item p,
.feature-item p {
  color: #666;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  background: #D4AF37;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.step h3 {
  color: #333;
  margin-bottom: 1rem;
}

.step p {
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .golden-title {
    font-size: 2rem;
  }
  
  .service-grid,
  .features-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .step {
    padding: 1.5rem;
  }
}

/* Animations */
.service-item,
.feature-item,
.step {
  transition: all 0.3s ease;
}

.service-item:hover,
.feature-item:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}/* End custom CSS */