: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 */
    max-height: auto;
    line-height: 1.6;
    background-color: #201f49;
}


/* ############################################################# */
/* BODY */

.contact {
    color: white;
    margin-top: 5%;
    margin-bottom: 18vh;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.contact .heading h2 span {
    color: #ffffff;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #999999;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #1100ff;
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: white;
    margin-right: 20px;
    text-align: center;
    width: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}

/* ############################################################# */
/* 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;
    }
}