@font-face {
    font-family: 'JHA Times Now Light';
    src: url('https://19539201.fs1.hubspotusercontent-na1.net/hubfs/19539201/Fonts/JHA%20-%20TimesNow-Light.otf') format('opentype'),
    font-weight: normal;
    font-style: normal;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px;
    font-family: 'JHA Times Now Light', serif;
}

.steps-title {
    flex: 1;
    font-size: 30px; /* JHA Times Now Light 40 */
    font-family: 'JHA Times Now Light', serif;
    font-weight: normal;
    text-align: left;
    margin-top: 0;
    padding-left: 0; /* 
    margin-left: 0px; /* ✅ Negatieve margin om meer naar links uit te lijnen */
}

.steps {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.step-number {
    background: #f8f87a;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
    line-height: 1;
    margin-right: 25px;
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    margin: 0;
    font-size: 30px; /* JHA Times Now Light 28 */
    font-family: 'JHA Times Now Light', serif;
    font-weight: normal;
    display: flex;
    align-items: center;
    padding-left: 0; 
  }
  
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column !important; /* ✅ Stapel items onder elkaar */
        align-items: center !important; /* ✅ Titel centreren */
        text-align: center; /* ✅ Tekst centreren */
    }
    .steps-title {
        text-align: center !important; /* ✅ Zorg dat titel gecentreerd blijft */
        margin-left: 0 !important; /* ✅ Verwijder negatieve margin */
        padding-left: 0 !important;


