/* Stili per la pagina Servizi */

/* Hero Banner */
.page-banner {
  position: relative;
  background: url('../../images/servizi/hero-banner.jpg') no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #2196f3;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.page-banner-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.page-banner h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.page-banner h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #2196f3;
  border-radius: 2px;
}

.page-banner p {
  color: #fff;
  font-size: 1.4rem;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.page-banner-cta {
  display: inline-block;
  background-color: #2196f3;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
  animation: fadeInUp 1.2s ease-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.page-banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.page-banner-cta:hover {
  background-color: #1976d2;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.page-banner-cta:hover::before {
  left: 100%;
}

.page-banner-features {
  display: flex;
  margin-top: 30px;
  animation: fadeInUp 1.4s ease-out;
}

.banner-feature {
  display: flex;
  align-items: center;
  margin-right: 30px;
  color: #fff;
}

.banner-feature i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #2196f3;
  background-color: rgba(255, 255, 255, 0.9);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.banner-feature span {
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .page-banner {
    height: 750px;
  }
  
  .page-banner h1 {
    font-size: 3rem;
  }
  
  .page-banner p {
    font-size: 1.2rem;
  }
  
  .page-banner-features {
    flex-wrap: wrap;
  }
  
  .banner-feature {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 650px;
  }
  
  .page-banner h1 {
    font-size: 2.5rem;
  }
  
  .page-banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .page-banner {
    height: 820px;
    min-height:600px;
    padding-top: 32px;
    padding-bottom: 24px;
    margin-bottom: 32px;
  }
  .page-banner-content {
    padding: 0 10px;
  }
  .page-banner h1 {
    font-size: 1.45rem;
    margin-bottom: 18px;
    margin-top: 0;
    line-height: 1.18;
  }
  .page-banner p {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .page-banner-cta {
    margin-bottom: 18px;
    margin-top: 0;
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
  .page-banner-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
  }
  .banner-feature {
    margin-right: 0;
    margin-bottom: 0;
    font-size: 0.98rem;
  }
  .services-cta {
    display: block;
    margin: 24px auto 0 auto;
    width: 90%;
    max-width: 340px;
    text-align: center;
    font-size: 1.1rem;
    padding: 16px 0;
    border-radius: 32px;
  }
  .services-included h2 {
    text-align: left;
    margin-bottom: 22px;
    margin-top: 0;
    position: relative;
    display: block;
    width: 100%;
    left: auto;
    transform: none;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .services-included h2::after {
    display: none;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    margin-top: 15px;
    line-height: 1.4;
    text-align: left;
    margin-left: 0;
  }
  
  .decorative-line {
    width: 80px;
    height: 3px;
    margin-bottom: 35px;
    margin-left: 0;
  }
}

/* Servizi Inclusi */
.services-included {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f5f9ff 100%);
  position: relative;
  overflow: hidden;
}

.services-included::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-included::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services-included .container {
  position: relative;
  z-index: 1;
}

.services-included h2 {
  position: relative;
  margin-bottom: 25px;
  text-align: left;
  display: block;
  width: 100%;
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.services-included h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: #2196f3;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
  max-width: 800px;
  margin-left: 0;
  margin-right: auto;
  line-height: 1.5;
}

.decorative-line {
  width: 120px;
  height: 3px;
  background-color: #2196f3;
  margin: 0;
  margin-bottom: 50px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.decorative-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.service-item {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #2196f3;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(33, 150, 243, 0.05), transparent);
  transition: height 0.5s ease;
  z-index: 0;
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(33, 150, 243, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.15);
}

.service-item:hover .service-icon {
  background-color: #2196f3;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.service-icon i {
  font-size: 32px;
  color: #2196f3;
  transition: all 0.4s ease;
}

.service-item:hover .service-icon i {
  color: #fff;
  transform: scale(1.1);
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #333;
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.service-item:hover h3 {
  color: #2196f3;
}

.service-item p {
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  flex-grow: 1;
}

.service-item-footer {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-item-badge {
  display: inline-block;
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-item:hover .service-item-badge {
  background-color: #2196f3;
  color: #fff;
}

.service-item-more {
  color: #2196f3;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.service-item:hover .service-item-more {
  opacity: 1;
  transform: translateX(0);
}

.service-item-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-item:hover .service-item-more i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item-more {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Servizi Aggiuntivi */
.additional-services {
  padding: 80px 0;
  background-color: #fff;
}

.services-table {
  margin-top: 50px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-row:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background-color: #f5f9ff;
}

.service-row::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #2196f3;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-row:hover::after {
  transform: scaleY(1);
}

.service-details {
  flex: 1;
}

.service-details h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.service-details h3 i {
  color: #2196f3;
  margin-right: 15px;
  font-size: 1.4rem;
}

.service-details p {
  color: #666;
  line-height: 1.6;
  max-width: 80%;
}

.service-price {
  min-width: 120px;
  text-align: right;
}

.service-price span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #2196f3;
  background-color: rgba(33, 150, 243, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
  display: inline-block;
}

.services-note {
  margin-top: 40px;
  background-color: #f5f9ff;
  border-left: 4px solid #2196f3;
  padding: 20px 30px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.services-note p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
}

.services-cta {
  display: inline-block;
  background-color: #2196f3;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.services-cta:hover {
  background-color: #1976d2;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

/* Business Services */
.business-services {
  padding: 80px 0;
  background-color: #f5f9ff;
  position: relative;
  overflow: hidden;
}

.business-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('../../images/business-bg.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.business-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

.business-info {
  flex: 1;
  min-width: 300px;
  padding-right: 50px;
}

.business-info h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
  font-family: 'SF Pro Display', 'Helvetica Neue', 'Helvetica', sans-serif !important;
}

.business-info p {
  margin-bottom: 30px;
  line-height: 1.7;
  color: #555;
}

.business-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.business-features li i {
  color: #2196f3;
  margin-right: 15px;
  font-size: 1.2rem;
}

.business-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.business-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.business-cta {
  margin-top: 40px;
  display: inline-block;
  background-color: #2196f3;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.business-cta:hover {
  background-color: #1976d2;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '?';
  position: absolute;
  top: 40px;
  right: 5%;
  font-size: 350px;
  color: rgba(33, 150, 243, 0.03);
  font-family: 'SF Pro Display', sans-serif;
  font-weight: 700;
  line-height: 1;
  z-index: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: #fff;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-button {
  width: 100%;
  padding: 20px 25px;
  border: none;
  background-color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-button:hover {
  background-color: #f5f9ff;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(33, 150, 243, 0.1);
  color: #2196f3;
  transition: all 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-icon i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-content-inner {
  padding: 0 25px 25px 25px;
  color: #666;
  line-height: 1.6;
}

.faq-content-inner h4 {
  color: #2196f3;
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 500;
}

.faq-content-inner p {
  margin: 0 0 15px;
  line-height: 1.7;
}

.faq-content-inner ul, 
.faq-content-inner ol {
  margin: 15px 0;
  padding-left: 20px;
}

.faq-content-inner li {
  margin-bottom: 10px;
}

.faq-content-inner strong {
  color: #333;
  font-weight: 600;
}

.faq-content-inner a {
  color: #2196f3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-content-inner a:hover {
  color: #0c7cd5;
  text-decoration: underline;
}

/* Style for active FAQ item */
.faq-item.active .faq-button {
  color: #2196f3;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-icon {
  background-color: #2196f3;
  color: #fff;
}

.faq-item.active .faq-icon i {
  transform: rotate(45deg);
}

.faq-more {
  text-align: center;
  margin-top: 40px;
}

.faq-more-btn {
  display: inline-block;
  background-color: transparent;
  color: #2196f3;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid #2196f3;
}

.faq-more-btn:hover {
  background-color: #2196f3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.faq-more-btn i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.faq-more-btn:hover i {
  transform: translateX(5px);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 40px;
  right: 10%;
  font-size: 300px;
  color: rgba(33, 150, 243, 0.03);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonials-slider {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px; /* Space for controls */
}

.testimonial-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 20px 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border-bottom: 4px solid transparent;
  transform: translateX(0); /* For slider animation */
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #2196f3;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 90px;
  color: rgba(33, 150, 243, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 18px;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-image i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2196f3;
  background: #f8f9fa;
}

.testimonial-author-info h4 {
  margin: 0 0 5px;
  font-size: 1.15rem;
  color: #333;
  font-weight: 600;
}

.testimonial-author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  opacity: 0.9;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: 8px;
  letter-spacing: 2px;
}

/* Slider Controls */
.slider-controls {
  display: none; /* Nascondi i controlli dello slider */
}

.prev-slide,
.next-slide {
  background-color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #2196f3;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: #2196f3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.slider-dots {
  display: flex;
  margin: 0 15px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: #2196f3;
  transform: scale(1.3);
}

/* Testimonial Animation */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-item[data-aos] {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .business-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  
  .page-banner h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-details {
    margin-bottom: 15px;
  }
  
  .service-details p {
    max-width: 100%;
  }
  
  .service-price {
    width: 100%;
    text-align: left;
  }
  
  .services-note {
    flex-direction: column;
  }
  
  .services-note p {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
