/* Base styles */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #e6e6e6;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
}

.logo {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid #FFC512;
}

/* Pricing Gallery Section */
.pricing-gallery {
  padding: 40px;
  background-color: #fff;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-gallery h2 {
  font-size: 2em;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFC512;
  display: inline-block;
  padding-bottom: 10px;
}

.pricing-gallery .item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex-wrap: wrap;
  justify-content: center;
}

.mini-slider {
  position: relative;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.mini-slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.mini-slide.active {
  display: block;
  position: relative;
}

.mini-prev,
.mini-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 197, 18, 0.85);
  border: none;
  color: white;
  font-size: 24px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.mini-prev:hover,
.mini-next:hover {
  background-color: #FFC512;
}

.mini-prev {
  left: 5px;
}

.mini-next {
  right: 5px;
}

.pricing-gallery .item p {
  font-size: 1.1em;
  margin: 0;
  text-align: left;
  flex-grow: 1;
  min-width: 200px;
}
