* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    /* font-family: 'Verdana', Helvetica, Arial, Lucida, sans-serif; */
    font-family: 'Open Sans', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    min-width: 800px;
}

header {
    background-color: #e6f4ff;
    top: 0px;
    text-align: center;
}

main {
    width: 100%;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 80px;
}


.main-container {
    z-index: 0;
    display: flex;
    flex-direction: row;
    width: 70%;
    margin: auto;
    margin-top: 10px;
}

.content-container{
    display: block;
    background-color: #fff;
    padding: 0px 30px;
    width: 100%;
}

.fill-box {
    background-color: #00406ae4;
    width: 100%;
    height: 70px;
}

@media screen and (max-width: 1300px) {
    .fill-box{
        height: 80px;
    }
}

@media screen and (max-width: 800px) {
    .main-container {
        width: 95%;
        margin: auto;
        margin-top: 10px;
    }
}

.small-title-background-image {
    background: #e9f2fb;   /* slightly cleaner tone */
    padding: 20px 0;       /* reduce height further */
}


.attractions-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 10%;
  margin-top: 20px;
  background-color: #f4f8fc;
}

.attraction-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding: 15px;
}

.attraction-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.attraction-item h3 {
  margin-top: 10px;
  color: #00457d;
  font-size: 18px;
}

.attraction-item p {
  font-size: 14px;
  color: #333;
  margin: 8px 0 0;
}


/* Full‑width colored strip */
#qut-info-container {
  width: 100%;
  background-color: #f4f8fc;
  padding: 80px 0;       /* Vertical padding only */
}

/* Centered inner content */
.qut-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;        /* Center wrapper in the page */
}

/* Image and text flex children */
.qut-info-image {
  flex: 0 0 45%;
}
.qut-info-text {
  flex: 1;
}

/* Responsive stack */
@media (max-width: 768px) {
  .qut-info-wrapper {
    flex-direction: column;
    padding: 0 5%;
  }
  .qut-info-image,
  .qut-info-text {
    width: 100%;
    text-align: center;
  }
}

