:root {
    --primary-bg-color: #23cfcf;
    --secondary-bg-color: #ec2170;
    --grey-color: #d9d9d9;
  }
  
  /* IMAGES */
  
  .cityImage {
    object-fit: cover;
    border-radius: 75%;
    display: block;
    margin: 0 auto;
    width: 20vw;
    height: 20vw;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
  }
  @media (max-width: 991px) {
    .cityImage {
      width: 50vw;
      height: 50vw;
    }
  }
  
  .aboutUsImage {
    object-fit: cover;
    display: block;
    margin: 0 auto;
    width: 80%;
    height: auto;
    border-radius: 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* TITLE ROW */
  #titleRow {
    background-image: url("../src/img/sty-main-image_files/iStock-2157291837.jpg");
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  #titleRow h2 {
    font-size: calc(1rem + 2vw);
    font-family: "Lobster", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    margin-bottom: 15px;
    padding: 0;
  }
  #titleRow p {
    font-size: calc(0.5rem + 2vw);
    font-weight: 400;
    margin: 0;
    padding: 0;
  }
  /* DESCRIPTION ROW */
  #descriptionRow h2 {
    font-family: "Lobster", serif;
    font-size: calc(2.5rem + 2vw);
    color: var(--secondary-bg-color);
  }
  #descriptionRow {
    background-color: var(--grey-color);
    clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0% 95%);
    padding: 50px 0;
    text-align: center;
  }
  #descriptionRow p {
    font-size: calc(1.2rem + 0.5vw);
    font-family: "Cabin", serif;
    font-weight: 400;
    font-style: normal;
    width: 80%;
    margin-top: 0rem;
    margin-bottom: 5rem;
    margin-left: 10%;
    line-height: 3.5rem;
    padding: 0;
  }
  
  /* TRY IT BUTTON ROW */
  .tryItButton {
    background-color: var(--secondary-bg-color);
    color: white;
    padding: 10px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 50px;
    transition: background-color 0.5s;
  }
  .tryItButton:hover {
    background-color: #c73d7b;
  }
  
  /* HOW IT WORKS ROW */
  #howItWorksRow {
    background-color: var(--primary-bg-color);
    padding: 50px 0;
    text-align: center;
  }
  #howItWorksRow h2 {
    font-family: "Lobster", serif;
    font-size: calc(2rem + 2vw);
    color: white;
  }
  .stepText {
    font-size: calc(1.3rem + 0.6vw);
    color: rgb(255, 255, 255);
    font-weight: 700;
    text-align: center;
    width: 80%;
    margin-left: 10%;
  }
  .stepDesc {
    font-size: calc(1.2rem + 0.5vw);
    color: black;
    text-align: center;
    width: 80%;
    margin-left: 10%;
    line-height: 3rem;
  }
  
  /* CITIES ROW */
  #citiesRow h3 {
    font-family: "Lobster", serif;
    font-size: calc(3rem + 2vw);
    color: white;
  }
  #citiesRow p {
    font-size: calc(1.2rem + 1.5vw);
    font-family: "Lobster", serif;
    color: white;
    margin-bottom: 30px;
  }
  
  /* QUESTIONS ROW */
  
  #questionsRow {
    background-color: var(--primary-bg-color-);
  }
  
  #questionsRow h3 {
    font-family: "Lobster", serif;
    font-size: calc(1.2rem + 4vw);
    color: rgb(255, 255, 255);
    margin: 60px;
  }
  .questionCard {
    width: 80%;
    height: auto;
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    border: 3px solid #ffffff;
    text-align: left;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .questionName {
    font-size: 1.8rem;
    font-family: "Lobster", serif;
  }
  .questionDesc {
    font-size: 1.5rem;
    font-family: "Cabin", serif;
  }
  .questionQnA {
    font-size: 1.5rem;
    font-family: "Cabin", serif;
  }
  
  #questionsRow a {
    font-size: 2rem;
    font-family: "Lobster", serif;
    color: white;
  }
  .seeMore {
    margin-bottom: 40px;
  }
  /* ABOUT US ROW */
  #aboutUs {
    background-color: var(--primary-bg-color);
  }
  
  #aboutUs h3 {
    font-family: "Lobster", serif;
    font-size: calc(1.2rem + 4vw);
    color: white;
    margin: 60px;
  }
  .aboutUsTextCol {
    text-align: left;
  }
  .aboutUsText {
    font-size: calc(1.2rem + 0.5vw);
    font-family: "Cabin", serif;
    color: white;
    margin: 20px;
    width: 80%;
    margin-left: 10%;
    font-style: normal;
    text-align: center;
  }
  
  .whiteText {
    color: white;
  }
  .blackText {
    color: black;
  }
  