/* ======= Big Image Section ======= */
.big-image-section {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  margin: 20px 0;
  align-items: center;
}

.big-image {
  max-width: 50%;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
  border: 3px solid white;
  cursor: pointer;
  flex-shrink: 0;
}

.big-image:hover {
  transform: scale(1.05);
}

/* Button */
.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #888;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #666;
}

/* Divider */
.divider {
  border: none;
  height: 2px;
  background-color: #78848d;
  border-radius: 1px;
  margin: 30px 0;
}