body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #68a639;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
}

.navigation-sticky {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #68a639;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    padding: 0 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    border-bottom: 3px solid white;
    padding: 10px;
    text-transform: uppercase;
}

.nav-menu a:hover {
    text-decoration: none !important;
    background-color: #00000025;
}

.nav-menu a:hover {
    text-decoration: underline;
}

.nav-button {
    background-color: #3f3f3f;
    color: white;
    border: none;
    padding: 10px 30px 10px 30px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 20px;
    font-size: 20px;
    border-radius: 10px;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.info-box {
    background-image: url(../images/oil-drops.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 50px;
    margin-bottom: 50px;
    min-height: 500px;
    text-align: center;
}

.info-box .text {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 90px;
    padding-top: 70px;
    color: white;
}

.info-box .text-small {
    font-size: 27px;
    padding-top: 60px;
    color: white;
}

.info-box .text-small2 {
    font-size: 27px;
    padding-top: 30px;
    color: white;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-box .button {
    display: inline-block;
    background-color: #3f3f3f;
    color: white;
    padding: 10px 30px 10px 30px;
    font-size: 20px;
    margin-top: 60px;
    text-decoration: none;
}

.info-box .button:hover {
    background-color: #ffffff;
    color: #000000;
}

.content {
    color: rgb(26, 26, 26);
    font-size: 18px;
}

.page-title {
    font-size: 30px;
    font-weight: 700;
    padding: 10px;
    color: #535353;
    font-family: Georgia, serif;
}

footer {
    margin-top: 100px;
    margin-bottom: 100px;
}

footer .img-startup img {
    max-width: 500px;
}

footer .img-sap img {
    max-height: 300px;
}

.doc-01 {
    text-align: center;
}

.doc-01 .image-container {
    position: relative;
    width: 300px;
    display: inline-block;
}

.doc-01 img {
    width: 100%;
    display: block;
}

.doc-01 .overlay {
    position: absolute;
    bottom: 0;
    background: green;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.doc-01 .image-container:hover .overlay {
    visibility: visible;
    opacity: 1;
}

.doc-01 .image-title {
    text-align: center;
    background-color: white;
    padding: 5px 10px;
    display: inline-block;
    font-size: 14px;
    width: 100%;
}

@media screen and (max-width: 768px) {

    .navigation-sticky,
    .header,
    .content,
    footer {
        padding-left: 10px;
        padding-right: 10px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        padding: 5px 0;
    }

    .info-box .text {
        font-size: 50px;
        line-height: 60px;
    }

    .info-box .text-small {
        font-size: 18px;
    }

    .content .page-title,
    .content p,
    .content ul,
    .content ol {
        font-size: 16px;
    }

    .info-box {
        background-image: none;
        margin-top: 0;
    }

    /* Add more styles as needed */
}

@media screen and (max-width: 480px) {

    /* Adjust styles for even smaller screens */
    .nav-menu a {
        font-size: 18px;
    }

    .info-box .text {
        font-size: 40px;
    }

    .info-box .text-small {
        font-size: 16px;
    }

    .info-box .text-small2 {
        font-size: 16px;
    }

    /* Add more styles as needed */
}

img {
    max-width: 100%;
    height: auto;
}