/* GENERAL PAGE */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f2ec;
  color: #333333;
  line-height: 1.6;
}


/* HERO */

.hero {
  width: 100%;
  background-color: #222222;
}

.hero-image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}


/* MAIN CONTENT */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}


/* INTRODUCTION */

.intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.intro p {
  margin: 0;
  font-size: 1.15rem;
}


/* TILE GRID */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


/* INDIVIDUAL TILES */

.tile {
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.20);
}

.tile img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.tile h2 {
  margin: 18px 18px 8px;
  font-size: 1.35rem;
}

.tile p {
  margin: 0 18px 22px;
  font-size: 1rem;
}


/* FOOTER */

footer {
  padding: 30px 20px;
  text-align: center;
  background-color: #292929;
  color: #ffffff;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #ffffff;
}


/* TABLETS */

@media (max-width: 900px) {

  .hero-image {
    height: 320px;
  }

  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* PHONES */


@media (max-width: 560px) {

    .hero-image {
        height: 230px;
    }

    main {
        padding: 30px 16px 45px;
    }

    .intro h1 {
        font-size: 32px;
    }

    .tiles {
        grid-template-columns: 1fr;
    }
}


/* TESTIMONIES PAGE */

.section-banner {
  max-width: 900px;
  margin: 0 auto 35px;
  overflow: hidden;
  border-radius: 8px;
}

.section-banner img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimony-list {
  max-width: 900px;
  margin: 0 auto;
}

.testimony-entry {
  display: flex;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
}

.testimony-entry img {
  display: block;
  width: 280px;
  min-height: 230px;
  object-fit: cover;
}

.testimony-text {
  padding: 25px 30px;
}

.testimony-text h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.testimony-text p {
  margin: 0 0 15px;
}

.testimony-text a {
  font-weight: bold;
  color: #333333;
}


/* TESTIMONIES PAGE - PHONES */

@media (max-width: 560px) {

  .section-banner img {
    height: 170px;
  }

  .testimony-entry {
    display: block;
  }

  .testimony-entry img {
    width: 100%;
    height: 240px;
    min-height: 0;
  }

  .testimony-text {
    padding: 22px;
  }
}




