/* Base Styles */

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #FF6A13;
  color: white;
  flex-wrap: wrap;
}

.logo {
  flex: 1;
}

.logo img {
  width: 180px;
  height: auto;
}

.intro {
  flex: 2;
  padding-right: 40px;
}

.contact-info {
  flex: 1;
  text-align: right;
  font-size: 18px;
  line-height: 1.6;
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.carousel {
  flex: 1;
  max-height: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
}

.carousel img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel img.active {
  display: block;
  opacity: 1;
}

.story-section {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: #e9e9e9;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  padding-right: 20px;
}

.contact-section {
  padding: 20px 40px;
  background: #4a4a4a;
  color: white;
  text-align: center;
  font-size: 20px;
}

.contact-section a {
  color: white;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

footer {
  padding: 20px;
  background-color: #FF6A13;
  color: white;
  text-align: center;
}

/* Mobile Styles */

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .intro {
    padding-right: 0;
    margin-top: 10px;
  }

  .contact-info {
    text-align: left;
    margin-top: 20px;
    font-size: 16px;
  }

  .story-section {
    flex-direction: column;
    padding: 20px;
  }

  .story-text {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .carousel {
    padding-left: 0;
    justify-content: center;
    width: 100%;
  }

  .carousel img {
    width: 100%;
    height: auto;
  }

  .contact-section {
    font-size: 18px;
    padding: 20px;
  }
}
