.packages-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.packages-section h2 {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 50px;
  color: #003366;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(50,50,50,0.2);
}

.package-card h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.package-card p {
  margin-bottom: 15px;
  color: #444;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align:left;
}

.package-card ul li {
  padding-left: 22px;
  margin-bottom: 10px;
  position: relative;
}

.package-card ul li::before {
  content: '\2714';
  position: absolute;
  left: 0;
  color: #00A3FF;
  font-weight: bold;
}

.package-price {
  font-size: 1.2em;
  font-weight: 600;
  color: #003366;
  margin-top: auto;
}

.package-delivery {
  font-size: 0.9em;
  color: #777;
}

.package-per {border:solid 1px #aaaaaa; border-radius:10px;padding:5px; font-style:italic; background:#ffffff}

.custom-request {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.custom-request h2 {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
}

.custom-request p {
  font-size: 1.1em;
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.custom-request .btn {
  background-color: #003366;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.custom-request .btn:hover {
  background-color: #00A3FF;
}

.recensioni-section {
  padding: 60px 20px;
  background: linear-gradient(to left, #eeeeee, #f7f7f7);
  text-align: center;
}

.recensioni-section h2 {
  font-size: 2.2em;
  color: #025add;
  margin-bottom: 30px;
}

.recensioni-carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.recensioni-wrapper {
  overflow: hidden;
  width: 100%;
}

.recensioni-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 60s linear infinite;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.recensioni-track:hover,
.recensioni-track:focus {
  animation-play-state: paused;
}

@media (hover: none) {
  .recensioni-track:active {
    animation-play-state: paused;
  }
}

.recensione-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  margin-right: 20px;
}
.recensione-card:last-child {
  margin-right: 0;
}

.recensione-card:hover {
  transform: translateY(-4px);
}

.recensione-card p {
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.recensione-card strong {
  color: #003366;
  font-size: 0.95em;
}


.faq {
  background: linear-gradient(to right, #eeeeee, #f7f7f7);
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color:#025add;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item summary {
  font-weight: bold;
  cursor: pointer;
  color:#000000;
  font-size: 1.1rem;
}

.faq-item p {
  padding: 10px 0 0 20px;
}

.faq .container {
  text-align:left;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

