.casino-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.casino-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.casino-content {
  flex: 1;
  max-width: 50%;
}

.casino-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.casino-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.casino-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.casino-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.casino-features i {
  font-size: 1.5rem;
  color: #e67e22;
  margin-right: 15px;
}

.casino-image {
  flex: 1;
  max-width: 50%;
}

.casino-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .casino-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .casino-content {
    max-width: 100%;
  }

  .casino-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.story-section {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.story-image {
  flex: 1;
  max-width: 50%;
}

.story-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.story-content {
  flex: 1;
  max-width: 50%;
}

.story-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.story-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-highlights {
  list-style: none;
  padding: 0;
}

.story-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.story-highlights i {
  font-size: 1.5rem;
  color: #e67e22;
  margin-right: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .story-image {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .story-content {
    max-width: 100%;
  }
}



.experience-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.experience-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.experience-content {
  flex: 1;
  max-width: 50%;
}

.experience-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.experience-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.experience-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.experience-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.experience-highlights i {
  font-size: 1.5rem;
  color: #e67e22;
  margin-right: 15px;
}

.experience-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e67e22;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.experience-btn:hover {
  background-color: #e67e22;
}

.experience-image {
  flex: 1;
  max-width: 50%;
}

.experience-image img {
  width: 60%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .experience-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .experience-content,
  .experience-image {
    max-width: 100%;
  }

  .experience-image img {
    margin-bottom: 20px;
  }
}
