:root {
    --font-primary: "Cerebri Sans", sans-serif;
    --color-black: rgb(0, 0, 0);
    --color-blue: #201f49;
    --font-large: 1.5rem;
    --font-medium: 1rem;
    --font-small: 0.875rem;
}

@font-face {
  font-family: 'Cerebri Sans';
  src: url('/fonts/Cerebri-Sans/CerebriSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Prevent vertical scrolling */
    line-height: 1.6;
    background-color: #201f49;
}



/* ############################################################# */
/* BODY */


    .container-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    max-width: 600px; /* Limit the width for better centering */
    margin: 0 auto; /* Center the container itself */
    color: white;
  }

.headline {
    margin-top: 5%;
    margin-bottom: 5%;
}

#paragraph {
    margin-bottom: 5%;
}

.step-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content horizontally */
    text-align: center;
    margin: 0 auto; /* Center the step-container within the parent */
}

.circle {
    font-size: 2rem;
    width: 240%;
    height: 80px;
    border: 3px solid white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    margin-left: 7%;
    line-height: 1.5;
    width: 586%;
}

.text .title {
    font-size: 1.7rem;
    font-weight: bolder;
    margin-bottom: 5px;
}


/* Vertical line styling */
.vertical-line {
    width: 2px;
    height: 100px;
    background-color: white;
    margin: 0 auto; /* Center the vertical line */
}

.bottomline {
    font-size: 1.5rem;
    margin: 10%;
}



@media only screen and (max-width: 767px) {
.contact-form {
    padding: 30px;
}
.contact-form:before {
    width: 100%;
}

}

/* ############################################################# */
/* MEDIA QUERIES FOR RESPONSIVENESS */

@media (max-width: 768px) {

    
    .container-body {
        width: 90%; /* Increase container width */
    }

    .headline {
        font-size: var(--font-large); /* Adjust headline font size */
    }

    .step-container {
        flex-direction: column; /* Stack steps vertically */
        margin-left: 0;
        margin-bottom: 20px; /* Add spacing between stacked steps */
    }

    .circle {
        width: 60px; /* Smaller circle for mobile */
        height: 60px;
        font-size: 1.5rem;
    }

    .text {
        margin-left: 0;
        width: 100%; /* Take full width */
        text-align: center; /* Center align text */
    }

    .vertical-line {
        display: none; /* Hide vertical lines on mobile */
    }

    .navigation {
        overflow: scroll;
        gap: 10px;
        margin-left: 5%;
    }

    .navigation li {
        display: block;
    }

    .navigation li a {
        font-size: var(--font-medium);
    }
}

@media (max-width: 480px) {

    
    .headline {
        font-size: var(--font-medium); /* Further reduce font size */
    }

    .company-name {
        font-size: 1rem;
        gap: 5px;
    }

    .circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .text .title {
        font-size: 1.5rem;
    }
}
