/* General Layout */
.collaborate-page {
  padding-bottom: 60px;
  font-family: 'Lato', sans-serif;
}

/* Hero Section */
.hero-section {
  background-image: url('../../images/collaborate/villa_sala.jpeg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.services-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.service-box {
  padding: 20px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.service-box i {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 20px;
}

.service-box h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 1rem;
  color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background-color: #fff;
}

.why-choose-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.why-choose-us p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.why-choose-us i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 20px;
}

.why-choose-us h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose-us .row div {
  padding: 20px;
  transition: transform 0.3s ease;
}

.why-choose-us .row div:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section h1 {
      font-size: 2.5rem;
  }

  .hero-section p {
      font-size: 1rem;
  }

  .service-box, .why-choose-us .row div {
      padding: 15px;
  }

  .services-section h2, .why-choose-us h2 {
      font-size: 2rem;
  }

  .service-box h5, .why-choose-us h5 {
      font-size: 1.2rem;
  }
}
