@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
      font-family: "Zalando Sans Expanded", sans-serif;
      overflow-x: hidden;

}
#hero{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.6)), url(hero.png);
    width: 100vw;
    color: white;
}
#hero h5{
    font-family: 'Montserrat';
    font-weight: normal;
}
button{
    background: #EF1960;
    border: none;
    box-shadow: none;
    font-size: 20px;
        font-family: 'Montserrat';
    border-radius: 10px;
    font-weight: bold;
}
/* Make the section fill the entire viewport */
.ghenwety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat';

}

/* Remove gaps between cells */
.ghenwety-grid {
  gap: 0;
}

.benefit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-family: sans-serif;
    font-family: 'Montserrat';

}
.benefit h2{
          font-family: "Zalando Sans Expanded", sans-serif;

}
.benefit img{
    width: 50px;
    margin-bottom: 20px;
}
/* Individual colors */
.red    { background: #d21c5d; }
.yellow { background: #570f32; } /* dark text for contrast */
.green  { background: #90bb40; }
.purple { background: #f15a29; }

.roller{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #570f32;
    color: white;
    font-family: 'Montserrat';
    font-weight: 200;
}
a{
    color: white !important;
}
.footer{
    background: black;
    color: white;
}
.pricing{
    background:black;
    color: white;
}
.pricing .col-lg-2 div{
    width: 2px;
    height: 100%;
    background: white;
    display: flex;justify-self: center;
}
/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .ghenwety-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  #hero{
    min-height: 80vh;
}
}
