body {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.85);
}

p, ul, ol {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

a {
    color: inherit;
    text-decoration: none;
  }

.flex {
    display: flex;
    justify-content: space-between;
}

p.logo {
    margin: 0px;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-weight: bold;
    font-size: 48px;
}

 p.highlight {
    margin: 0px;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-weight: bold;
    font-size: 36px;
 }

 h2, p.highlight-description {
    margin: 0px;
    font-family: 'Neue Haas Grotesk Display Pro';
    font-weight: bold;
    font-size: 24px;
 }

.fc-green {
    color: #39e893;
}

.header-box {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin:auto;
    margin-top: 50px;
}

.menu {
}

.menu ul {
    display: flex;
    gap: 20px;
    list-style: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.menu li {
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.menu li:hover {
    background-color: #39e893;
}


.content-box {
    max-width: 1000px;
    margin:auto;
    margin-top: 50px;
    border-radius: 25px;
    padding: 100px;
    background-color: rgb(247,247,250);
}

.content-box-triple {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    margin-top: 20px;
}

.content-box-triple > .box {
    flex: 1;
    border-radius: 25px;
    padding: 40px;
    background-color: rgb(247,247,250);
}

.bg1 {
    background: linear-gradient(to right, rgba(247,247,250,1) 20%, rgba(247,247,250,0) 80%), url('../Images/img_racks.png') center/cover no-repeat;
}

.logo-box {
display: flex;
justify-content: center;
align-items: center;
gap: 60px;
margin-top: 100px;
margin-bottom: 100px;
}

.logo-box img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
}

.logo-box img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-box img.height-override {
    height: 25px;
}
 
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    margin-top: 20px;
  }
  
  .step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 25px;

  }
  
  .steps .step:nth-child(4) {
    grid-column: span 2; /* 2 oszlop széles lesz */
  }
  
  .steps .step:nth-child(5) {
    grid-column: 3;
  }