@charset "UTF-8";
/* CSS Document */

.page-wrapper {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100%;
}

.carousel-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-column {
  background-color: #fdfdfd;
}

.text-column h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.text-column h2 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 20px;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
}

.carousel-wrapper {
  padding-left: 10px; /* Adjust this value as needed */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.carousel-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  background: white;
  position: relative;
}

.carousel-slide {
  width: 70%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}

.carousel-content {
  width: 30%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.carousel-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.carousel-content h4 {
  font-size: 16px;
  color: #888;
  margin-bottom: 10px;
}

.carousel-content p {
  font-size: 14px;
  line-height: 1.6;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: rgba(255, 255, 255, 1);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}