@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Raleway:400,800,900");

html, body, div, span, h1, h2, h3, p, a, em, i, img, ul, li, nav, section, article, time, button, footer {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, section, nav, header, footer {
    display: block;
    
}

body {
    line-height: 1;
}

ul {
    list-style: none;
}

body {
    -webkit-text-size-adjust: none;
}

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: #ffffff;
}

    body.is-preload *, body.is-preload *:before, body.is-preload *:after {
        -moz-animation: none !important;
        -webkit-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        -moz-transition: none !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        transition: none !important;
    }

body {
    width: 100%; 
    margin: 0; 
}
/* Type */

body, button {
    color: #646464;
    font-family: "Source Sans Pro";
    font-size: 14pt;
    font-weight: 400;
    line-height: 1.75;
}


a {
    -moz-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -webkit-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    -ms-transition: color 0.2s ease, border-bottom-color 0.2s ease;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
    border-bottom: dotted 1px rgba(160, 160, 160, 0.65);
    color: inherit;
    text-decoration: none;
}

    a:hover {
        border-bottom-color: transparent;
        color: #333333 !important;
    }

strong, b {
    color: #3c3b3b;
    font-weight: 700;
}

em, i {
    font-style: italic;
}

p {
    margin: 0 0 2em 0;
}

h1, h2, h3 {
    color: #3c3b3b;
    font-family: "Source Sans Pro";
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.65;
    margin: 0 0 1em 0;
}

    h1 a, h2 a, h3 a {
        color: inherit;
        border-bottom: 0;
    }

h2 {
    font-size: 1.1em;
}

h3 {
    font-size: 0.9em;
}

.align-center {
    text-align: center;
}


/* Mini Post */

.mini-post {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #ffffff;
    border: solid 1px rgba(160, 160, 160, 0.3);
    width: 100%;
    align-items: center;
    padding: 1em;
}

    .mini-post header {
        text-align: center;
        margin-bottom: 1em;
    }

        .mini-post header h3 {
            font-size: 0.9em;
            margin-bottom: 0.5em;
        }


        .mini-post header .published {
            font-family: "Source Sans Pro";
            font-size: 0.5em;
            font-weight: 400;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #646464;
        }

        .mini-post header p {
            font-size: 0.8em;
            color: #646464;
            margin: 0;
        }

    .mini-post .image {
        overflow: hidden;
        width: 200px;
        height: 200px;
        margin-bottom: 1em;
    }

        .mini-post .image img {
            -moz-transition: -moz-transform 0.2s ease-out;
            -webkit-transition: -moz-transform 0.2s ease-out;
            -ms-transition: -moz-transform 0.2s ease-out;
            transition: transform 0.2s ease-out;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mini-post .image:hover img {
            -moz-transform: scale(1.05);
            -webkit-transform: scale(1.05);
            -ms-transform: scale(1.05);
            transform: scale(1.05);
        }

    .mini-post .content {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        width: 100%;
    }

    .mini-post .button {
        width: 200px;
        text-align: center;
        margin-top: 1em;
    }

.mini-posts {
    background: #ffffff;
    border: solid 1px rgba(160, 160, 160, 0.3);
    margin: 0 0 2em 0;
    padding: 1em;
    width: 100%;
    min-height: 100vh;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

    .mini-posts header h2 {
        margin: 2em 0 2em 6em;
    }

    .mini-posts header h3 {
        margin: 2em 0 2em 2em;
    }

    .mini-posts .mini-post-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2em;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }

/* Main Post */

.main-post {
    background: #ffffff;
    border: solid 1px rgba(160, 160, 160, 0.3);
    padding: 2em;
    margin: 0 0 2em 0;
    width: 100%;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    box-sizing: border-box;
}
        .custom-select {
            position: relative;
            width: 90%;
            max-width: 300px;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 3em;
        }

        .select-button {
            font-size: 1em;
            padding: 0.75em 2em 0.75em 1em;
            width: 100%;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            position:relative;
        }

        .select-button:hover {
            background-color: #f0f0f0;
        }

        .select-button::after {
            content: '▼'; 
            position: absolute;
            right: 0.5em; 
            top: 50%;
            transform: translateY(-50%); 
            font-size: 1em;
            color: #333; 
            pointer-events: none;
        }

        .select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 4px;
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .select-options li {
            padding: 0.5em 1em;
            cursor: pointer;
        }

        .select-options li:hover {
            background-color: #f0f0f0;
        }

        .customer-description {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 1em;
            color: #646464;
            margin-bottom: 1em;
            line-height: 1.6;
        }


    .main-post.customers {
        min-height: auto;
        justify-content: flex-start;
        padding-top: 4em;
    }

    .main-post .inner-content {
        max-width: 1000px;
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        width: 100%;
        background-color: transparent;  
        padding: 0;
        border-radius: 0; 
    }
    

        .main-post .inner-content.about-us {
            -moz-flex-wrap: wrap;
            -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .main-post .inner-content.customers {
            -moz-flex-direction: column;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -moz-align-items: center;
            -webkit-align-items: center;
            -ms-align-items: center;
            align-items: center;
        }

    .main-post .inner-content header {
        margin-bottom: 2em;
        width: 100%;
        text-align: center;
    }


    .main-post .milestones header {
        margin-bottom: 6em;
        width: 100%;
        text-align: center;
    }

    .main-post .inner-content h2 {
        text-align: center;
        font-size: 2em;
        color: rgb(172, 20, 172);
    }

    .main-post .inner-content h3 {
        font-size: 1.2em;
        color: #3c3b3b;
        margin-bottom: 0.5em;
        color: #ffffff; 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
    }

    .main-post .image {
        width: 400px;
        height: 400px;
        overflow: hidden;
        margin-right: 2em;
        flex-shrink: 0;
    }

        .main-post .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .main-post .text-content {
        flex-grow: 1;
        text-align: left;
        margin-left: 2em;
    }

    .main-post .text-content p {
        font-size: 1.2em;
        line-height: 1.8;
        margin-bottom: 1.5em;
        color: #0c0404;
    }

    .main-post .text-content .button {
        width: 200px;
        text-align: center;
        display: inline-block;
    }

    .main-post .text-content .about-highlights {
        list-style: disc;
        margin: 0 0 2em 1.5em;
        padding: 0;
    }

    .main-post .text-content .about-highlights li {
        font-size: 1.1em;
        color: #0c0404;
        margin-bottom: 0.5em;
    }

    .main-post .customer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2em;
        margin-bottom: 2em;
        width: 100%;
    }

    .main-post .customer {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -moz-align-items: center;
        -webkit-align-items: center;
        -ms-align-items: center;
        align-items: center;
        text-align: center;
    }

    .main-post .customer span {
        font-size: 1em;
        font-weight: 700;
        margin-bottom: 1em;
        color: #3c3b3b;
    }

    .main-post .customer .image {
        width: 150px;
        height: 150px;
        margin: 0;
    }

        .main-post .customer .image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

/* Header */

body {
    padding-top: 5em;
}

#header {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    background-color: #ffffff;
    border-bottom: solid 1px rgba(160, 160, 160, 0.316);
    height: 5em;
    left: 0;
    line-height: 5em;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    padding-left: 1em;
}

    #header a {
        color: #0c0404;
        text-decoration: none;
    }

    #header ul {
        list-style: none;
        margin: 0;
        padding-left: 0;
    }

        #header ul li {
            display: inline-block;
            padding-left: 0;
        }

    #header h1 {
        height: inherit;
        line-height: inherit;
        padding: 0 0 0 1.5em;
        white-space: nowrap;
    }

        #header h1 a {
            font-size: 1em;
        }

    #header .links {
        -moz-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: inherit;
        line-height: inherit;
        margin-left: 3em;
        overflow: hidden;
    }

        #header .links ul li {
            border-left: solid 1px rgba(160, 160, 160, 0.3);
            line-height: 1;
            margin-left: 1em;
            padding-left: 1em;
        }

            #header .links ul li:first-child {
                border-left: 0;
                margin-left: 0;
                padding-left: 0;
            }

            #header .links ul li a {
                border-bottom: 0;
                font-family: "Source Sans Pro";
                font-size: 1em;
                font-weight: bold;
                letter-spacing: 0.1em;
            }

    #header .translate {
        height: inherit;
        line-height: inherit;
        margin-right: 1.5em;
    }

        #header .translate ul li {
            height: inherit;
            line-height: inherit;
        }

            #header .translate ul li .translate-button {
                background: transparent;
                border: solid 1px rgba(160, 160, 160, 0.3);
                color: #3c3b3b;
                cursor: pointer;
                font-family: "Source Sans Pro";
                font-size: 0.7em;
                font-weight: 700;
                height: 2.5em;
                line-height: 2.5em;
                padding: 0 1em;
                text-transform: uppercase;
                -moz-transition: background-color 0.2s ease, color 0.2s ease;
                -webkit-transition: background-color 0.2s ease, color 0.2s ease;
                -ms-transition: background-color 0.2s ease, color 0.2s ease;
                transition: background-color 0.2s ease, color 0.2s ease;
            }

            #header .translate ul li .translate-button:hover {
                background-color: rgba(46, 186, 174, 0.05);
                color: #333333;
            }


#banner {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #3a3a3a;
    position: relative;
    max-width: 100%;
    height: 70vh;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(198, 198, 198, 0.5);
        z-index: 2;
    }

    #banner .inner {
        position: relative;
        z-index: 3;
        padding: 0 1em;
        width: 100%;
        max-width: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0;
        border: none;
    }

        #banner .logo {
            margin: 0 1em 0 0;
        }

            #banner .logo img {
                max-width: 150px;
                height: auto;
                border-radius: 5px;
            }

        #banner header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-wrap: wrap;
        }

            #banner header h1 {
                color: #ffffff;
                font-family: "Source Sans Pro";
                font-size: 2.5em;
                font-weight: 800;
                letter-spacing: 0.25em;
                margin: 0 0 0.25em 0;
                text-shadow: 0 0 10px rgba(126, 126, 126, 0.5);
            }

            #banner header p {
                color: #ffffff;
                font-family: "Source Sans Pro";
                font-size: 1.2em;
                font-weight: 400;
                margin: 0;
                text-shadow: 0 0 10px rgba(126, 126, 126, 0.5);
            }


/* Wrapper */

#wrapper {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    margin: 0 auto;
    max-width: 100%;
    opacity: 1;
    padding: 0;
    width: 100%;
}

    #wrapper > #banner {
        margin: 0;
        padding: 0;
        width: 100vw;
    }

    #wrapper > .content {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    body.is-menu-visible #wrapper {
        opacity: 0.15;
    }


/* Button */

.button {
    -moz-transition: background-color 0.2s ease, color 0.2s ease;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    -ms-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: transparent;
    border: solid 1px rgba(160, 160, 160, 0.3);
    color: #3c3b3b;
    cursor: pointer;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.5em 1em;
    text-transform: uppercase;
    text-align: center;
}

    .button:hover {
        background-color: rgba(46, 186, 174, 0.05);
        color: #333333;
    }

/* Footer */

#footer {
    background-color: #333;
    color: #ffffff;
    padding: 3em 0;
    width: 100%;
}

    #footer .inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2em;
    }

    #footer .footer-content {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -moz-flex-direction: row;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        margin-bottom: 2em;
    }

    #footer .footer-section {
        flex: 1;
        margin-right: 2em;
    }

        #footer .footer-section:last-child {
            margin-right: 0;
        }

        #footer .footer-section h3 {
            color: #ffffff;
            font-size: 1em;
            margin-bottom: 1em;
        }

        #footer .footer-section p {
            color: #cccccc;
            font-size: 0.9em;
            margin: 0 0 1em 0;
        }

        #footer .footer-section .contact-info li {
            margin-bottom: 0.5em;
            font-size: 0.9em;
            color: #cccccc;
        }

            #footer .footer-section .contact-info li i {
                margin-right: 0.5em;
                color: #2ebAAE;
            }

            #footer .footer-section .contact-info li a {
                color: #cccccc;
                border-bottom: none;
            }

                #footer .footer-section .contact-info li a:hover {
                    color: #ffffff;
                }

        #footer .footer-section .social-links li {
            margin-bottom: 0.5em;
            font-size: 0.9em;
        }

            #footer .footer-section .social-links li a {
                color: #cccccc;
                border-bottom: none;
                display: -moz-flex;
                display: -webkit-flex;
                display: -ms-flex;
                display: flex;
                -moz-align-items: center;
                -webkit-align-items: center;
                -ms-align-items: center;
                align-items: center;
            }

                #footer .footer-section .social-links li a i {
                    margin-right: 0.5em;
                    color: #2ebAAE;
                }

                #footer .footer-section .social-links li a:hover {
                    color: #ffffff;
                }

    #footer .copyright {
        text-align: center;
        font-size: 0.8em;
        color: #cccccc;
        border-top: solid 1px rgba(255, 255, 255, 0.1);
        padding-top: 1em;
    }

    

/* Milestones Section */
.milestones-section {
    background: #f5f5f5;
    padding: 2em 1em;
    width: 100%;
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -moz-align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    box-sizing: border-box;
    margin-left:0;
    margin-right: 0;
    transform: none;
}

    .milestones-section .timeline {
        max-width: 1000px;
        margin: 0 auto;
        padding: 2em 0;
        position: relative;
        width: 100%;
    }

        .milestones-section .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: #2ebAAE;
            transform: translateX(-50%);
            z-index: 1;
        }

        .milestones-section .timeline-year {
            position: relative;
            margin-bottom: 2em;
            width: 45%;
            padding: 1em;
            text-align: left;
            background: #ffffff;
            border: solid 1px rgba(160, 160, 160, 0.3);
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .milestones-section .timeline-year.right {
            align-self: flex-end;
            text-align: left;
            margin-left: 55%;
        }

        .milestones-section .timeline-year h3 {
            font-size: 2em;
            color: #aa42aa;
            margin-bottom: 0.5em;
            position: relative;
        }

        .milestones-section .timeline-year h3:before {
            content: '';
            position: absolute;
            right: -64px;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: #2ebAAE;
            border: 2px solid #ffffff;
            border-radius: 50%;
            z-index: 2;
        }

        .milestones-section .timeline-year.right h3:before {
            left: -64px;
            right: auto;
        }

        .milestones-section .timeline-events {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .milestones-section .timeline-events li {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 1em;
            color: #0c0404;
            margin-bottom: 0.5em;
            position: relative;
            text-align: left;
            padding-left: 2.5em; 
        }

        .milestones-section .timeline-events li:before {
            content: '\f044'; 
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #2ebAAE;
            font-size: 1em;
            position: absolute;
            left: 0;
            top: 0.1em;
        }

        .milestones-section .timeline-year.right .timeline-events li {
            text-align: left;
        }

        .milestones-section .timeline-year.right .timeline-events li:before {
            left: -30px;
            right: auto;
        }

        .milestones-section .timeline-year.right .timeline-events li {
            font-size: 0.8em;
            color: #0c0404;
            margin-bottom: 0.5em;
            position: relative;
            text-align: left;
            font-size: 1em;
        }

        .milestones-section .timeline-year.right .timeline-events li:before {
            content: '\f044'; 
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #2ebAAE;
            font-size: 1em;
            position: absolute;
            left: 0;
            top: 0.2em;
        }


/* News Section */

.news-section {
    background-color: rgb(255, 255, 255);
    width: 100%;
    padding: 2em 0;
}

.news-table {
    max-width: 1000px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    justify-content: space-between;
    font-family: "Source Sans Pro";
    font-weight: 700;
    color: #3c3b3b;
    padding: 0 1em;
}


.header-date, .header-name {
    flex: 1;
    text-align: left;
}

.header-name {
    padding-left: 1em;
}

hr {
    border: 0;
    height: 1px;
    background: #d1c4e9;
    margin: 1em 0;
}

.news-list {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.news-item {
    background: #ffffff;
    border: solid 1px rgba(160, 160, 160, 0.3);
    padding: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 1em;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-item:hover {
    transform: scale(1.02);
    background-color: #f9f5ff;
}

.news-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.news-date {
    font-family: "Source Sans Pro";
    font-size: 0.9em;
    color: #646464;
    font-style: italic;
    flex: 1;
}

.news-list-title {
    font-family: "Source Sans Pro";
    font-size: 1.1em;
    font-weight: 700;
    color: #3c3b3b;
    flex: 2;
    padding-left: 1em;
    text-align: left;
}

/* News Detail */

.news-detail {
    max-width: 1000px;
    margin: 2em auto 0;
    padding: 1.5em;
    background: #ffffff;
    border-radius: 5px;
}

.news-detail-header {
    padding-bottom: 1em;
    text-align: center;
    border-bottom: 1px solid #d1c4e9;
    margin-left: 2em;
    margin-right: 2em;
}

.news-title {
    font-family: "Source Sans Pro";
    font-size: 2em;
    font-weight: 700;
    color: #3c3b3b;
    margin-bottom: 0.5em;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.news-meta {
    font-family: "Source Sans Pro";
    font-size: 0.9em;
    color: #646464;
    font-style: italic;
}

.news-content {
    margin-left: 2em;
    margin-right: 2em;
    padding: 1.5em 0;
}

.news-content p {
    font-family: "Source Sans Pro";
    font-size: 1.2em;
    line-height: 1.8;
    color: #0c0404;
    margin-bottom: 1.5em;
}

.image-slider {
    padding: 1.5em 0;
    text-align: center;
}

.slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-images {
    display: flex;
    flex-direction: column;
}

.slider-image {
    width: 100%;
    height: auto;
    display: none;
}

.slider-image.active {
    display: block;
}

.slider-dots {
    margin-top: 1em;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background: #2ebAAE;
}

.dot:hover {
    background: #4ac7b7;
}


.solution-index {
    background: linear-gradient(135deg, #E6F0FA 0%, #F5F7FA 100%);
    border-bottom: none !important;
    height: 2.5em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.solution-index ul {
    list-style: none;
    display: flex;
    gap: 2em;
    padding: 0;
}

.solution-index ul li a {
    color: #3c3b3b;
    text-decoration: none;
    font-family: "Source Sans Pro";
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.solution-index ul li a:hover {
    color: #2ebAAE;
}

/* Solutions Section */
.solutions-section {
    padding: 8em 2em 2em 2em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3em;
    background: linear-gradient(135deg, #E6F0FA 0%, #F5F7FA 50%, #2ebAAE 100%);
    box-sizing: border-box;
}




.solution-item {
     display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    padding: 1.5em 0;
}

.solution-text {
    flex: 1;
    margin-right: 2em;
    text-align: left;
}

.solution-text h2 {
    color: #66c5dbfc;
    font-family: "Source Sans Pro";
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 0.5em;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.solution-text h2 i {
    color: #2ebAAE;
    font-size: 1.2em;
}


.solution-text p {
    color: #646464;
    font-family: "Source Sans Pro";
    font-size: 1.2em;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-item.reverse .solution-text {
    margin-right: 0;
    margin-left: 2em;
}

.solution-item.reverse .solution-image {
    margin-left: 0;
    margin-right: 2em;
}


.solution-image {
    flex: 1;
    margin-left: 2em;
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.solution-image:hover img {
    transform: scale(1.05);
}

.solution-button {
    display: block;
    background-color: #1e90ff;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-family: "Source Sans Pro";
    font-size: 1em;
    font-weight: 700;
    padding: 0.75em 2em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: 1em;
    width: fit-content;
}

.solution-button:hover {
    background-color: #104e8b;
}


.solution-button:hover {
    background-color: #104e8b; 
}


.exstream-list {
    list-style: none !important;
    padding: 0;
    margin: 1.5em 0 0;
}

.exstream-list li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
}

.exstream-list li::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    color: #2ebAAE;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0.2em;
    font-weight: 900;
}

/* FAQ Section */
.faq-section {
    padding: 2em;
    background-color: #ffffff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: "Source Sans Pro";
    color: #333333;
    font-size: 2em;
    text-align: left;
    margin-bottom: 1em;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.faq-item {
    border-bottom: 1px solid #d1d1d1;
    padding: 1em 0;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5em;
} 

.faq-question {
    font-family: "Source Sans Pro";
    font-size: 1.2em;
    font-weight: 600;
    color: #333333;
    flex-grow: 1;
    margin-right: 1em;
}

.faq-toggle {
    background: transparent;
    border: 1px solid #d1d1d1;
    color: #333333;
    cursor: pointer;
    font-size: 1.2em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    line-height: 1.3em;
    padding: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-toggle:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.faq-toggle .fas {
    transition: transform 0.2s ease;
}

.faq-toggle.active .fas.fa-plus {
    display: none;
}

.faq-toggle.active .fas.fa-minus {
    display: inline-block;
}

.faq-toggle .fas.fa-minus {
    display: none;
}

.faq-answer {
    font-family: "Source Sans Pro";
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    display: none;
    padding-left: 1em;
    padding-top: 0.5em;
    border-left: 2px solid #d1d1d1;
}

.faq-answer.active {
    display: block;
}


/* Contact Section Specific Styles */

.contact-banner {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #3a3a3a;
    position: relative;
    width: 100%;
    height: 30vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2em;
}

    .contact-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(198, 198, 198, 0.5);
        z-index: 2;
    }

    .contact-banner .inner {
        position: relative;
        z-index: 3;
        padding: 0 1em;
        width: 100%;
        max-width: 1000px;
        text-align: center;
    }

        .contact-banner header h1 {
            color: #ffffff;
            font-family: "Source Sans Pro";
            font-size: 2.5em;
            font-weight: 800;
            letter-spacing: 0.25em;
            margin: 0 0 0.25em 0;
            text-shadow: 0 0 10px rgba(126, 126, 126, 0.5);
        }

        .contact-banner header p {
            color: #ffffff;
            font-family: "Source Sans Pro";
            font-size: 1.2em;
            font-weight: 400;
            margin: 0;
            text-shadow: 0 0 10px rgba(126, 126, 126, 0.5);
        }

.contact-section .news-detail-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-toggle {
    display: flex;
    gap: 1em;
}

.toggle-button {
    background: transparent;
    border: solid 1px rgba(160, 160, 160, 0.3);
    color: #3c3b3b;
    cursor: pointer;
    font-family: "Source Sans Pro";
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.5em 1em;
    text-transform: uppercase;
    -moz-transition: background-color 0.2s ease, color 0.2s ease;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    -ms-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.toggle-button.active, .toggle-button:hover {
    background-color: rgba(46, 186, 174, 0.05);
    color: #333333;
}

.contact-columns {
    display: flex;
    gap: 2em;
    margin-bottom: 2em;
    background: #f9f9f9;
    padding: 1em;
    border-radius: 5px;
}

.contact-details-column {
    flex: 1;
}

.contact-details-column h3 {
    font-family: "Source Sans Pro";
    font-size: 1.2em;
    font-weight: 700;
    color: #3c3b3b;
    margin-bottom: 1em;
}

.contact-details-column .contact-info {
    margin: 0;
}

.contact-details-column .contact-info li {
    margin-bottom: 0.5em;
    font-size: 1em;
    color: #0c0404;
}

.contact-details-column .contact-info li i {
    margin-right: 0.5em;
    color: #2ebAAE;
}

.contact-details-column .contact-info li a {
    color: #0c0404;
    border-bottom: none;
}

.contact-details-column .contact-info li a:hover {
    color: #333333;
}

.contact-details-column h4 {
    font-family: "Source Sans Pro";
    font-size: 1em;
    font-weight: 700;
    color: #3c3b3b;
    margin: 1em 0 0.5em 0;
}

.contact-details-column .office-hours {
    margin: 0;
}

.contact-details-column .office-hours li {
    font-size: 0.9em;
    color: #0c0404;
    margin-bottom: 0.5em;
}

.contact-details-column .office-hours li i {
    margin-right: 0.5em;
    color: #2ebAAE;
}

.contact-details-column .contact-persons {
    margin: 0;
}

.contact-details-column .contact-persons li {
    font-size: 0.9em;
    color: #0c0404;
    margin-bottom: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-details-column .contact-persons li i {
    margin-right: 0.5em;
    color: #2ebAAE;
}

.contact-details-column .contact-persons li a {
    color: #0c0404;
    border-bottom: none;
}

.contact-details-column .contact-persons li a:hover {
    color: #333333;
}

.contact-name {
    margin-bottom: 0.25em;
}

.contact-email {
    margin-left: 0;
}

.contact-map-column {
    flex: 1;
}

.contact-map {
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 5px;
}

.card {
    background: #f9f9f9;
    padding: 1.5em;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
}

.contact-form.card {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form h3 {
    font-family: "Source Sans Pro";
    font-size: 1.2em;
    font-weight: 700;
    color: #3c3b3b;
    margin-bottom: 1em;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.contact-form input,
.contact-form textarea {
    padding: 0.5em;
    font-family: "Source Sans Pro";
    font-size: 0.9em;
    border: solid 1px rgba(160, 160, 160, 0.3);
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .button {
    width: 200px;
    margin: 0 auto;
}

.live-chat-prompt {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background-color: #2ebAAE;
    color: #ffffff;
    border: none;
    padding: 0.8em 1.5em;
    border-radius: 25px;
    font-family: "Source Sans Pro";
    font-size: 0.9em;
    font-weight: 700;
    cursor: pointer;
    -moz-transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.chat-button i {
    margin-right: 0.5em;
}

.chat-button:hover {
    background-color: #4ac7b7;
}

/* Join Us Section Specific Styles */

.join-us-section .inner-content {
    align-items: center;
}

.join-us-section .text-content {
    text-align: center;
    margin-left: 0;
}

.join-us-section .text-content .button {
    margin: 0 auto;
}

.lang-button {
    background: transparent;
    border: solid 1px rgba(160, 160, 160, 0.3);
    color: #3c3b3b;
    cursor: pointer;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.5em 1em;
    text-transform: uppercase;
    -moz-transition: background-color 0.2s ease, color 0.2s ease;
    -webkit-transition: background-color 0.2s ease, color 0.2s ease;
    -ms-transition: background-color 0.2s ease, color 0.2s ease;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-left: 0.5em;
}

.lang-button.active, .lang-button:hover {
    background-color: rgba(46, 186, 174, 0.05);
    color: #333333;
}

.translate ul li {
    display: flex;
    height: inherit;
    line-height: inherit;
}


/* solution_exstream */
#exstream-banner {
    background-image: url('../images/exstream_solution.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    padding: 8em 2em 2em 2em;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    position: relative;
    max-height: 70vh;
    overflow: hidden;

}

    #exstream-banner .inner-content {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1; 
    }

    #exstream-banner .banner-text {
        text-align: left;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

        #exstream-banner .banner-text h1 {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            color: #ffffff;
            font-size: 2.5em;
            font-weight: 800;
            margin-top: 2em;
            margin-bottom: auto;
            letter-spacing: 0.1em;
        }

        #exstream-banner .banner-text p {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            margin-top: 2em;
            font-size: 1.2em;
            line-height: 1.6;
        }

    #exstream-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); 
        z-index: 0; 
    }

    #exstream-overview {
        padding: 4em 2em;
        background: #ffffff;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    #exstream-overview .inner-content {
        max-width: 1000px;
        width: 100%;
        text-align: center;
    }

    #exstream-overview h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 1em;
        letter-spacing: 0.1em;
    }

    #exstream-overview p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        line-height: 1.8;
    }

    #exstream-benefits {
        padding: 4em 2em;
        background: #f9f9f9;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    #exstream-benefits .inner-content {
        max-width: 1000px;
        width: 100%;
    }

    #exstream-benefits h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 2em;
        text-align: center;
        letter-spacing: 0.1em;
    }

    #exstream-benefits .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2em;
        width: 100%;
    }

    #exstream-benefits .benefit-item {
        text-align: center;
    }

    #exstream-benefits .benefit-item .icon-text-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5em;
    }

    #exstream-benefits .benefit-item .icon-text-container i {
        margin-right: 0.22em; 
    }

    #exstream-benefits .benefit-item .icon-text-container span {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        font-weight: 700;
        color: #2ebAAE;
    }

    #exstream-benefits .benefit-item p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.1em;
        color: #646464;
        margin-top: 0.5em;
        line-height: 1.6;
    }

    /* resource */ 
    #exstream-resources {
        padding: 4em 2em;
        background: #ffffff;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: left;
        box-sizing: border-box;
    }

    #exstream-resources .inner-content {
        max-width: 1200px;
        width: 100%;
        margin-left: 5em;
    }

    #exstream-resources h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 1em;
        letter-spacing: 0.1em;
    }

    #exstream-resources .resource-container {
        display: flex;
        align-items: center;
        gap: 2em;
        margin-bottom: 1.5em;
    }

    #exstream-resources .resource-text {
        flex: 1;
    }

    #exstream-resources .resource-image {
        flex: 0 0 auto;
    }

    #exstream-resources .resource-img {
        max-width: 200px;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-right: 3em;
    }

    #exstream-resources p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        margin-bottom: 1.5em;
        line-height: 1.8;
    }

    #exstream-resources .button {
        background-color: #1e90ff;
        border: none;
        color: #ffffff;
        cursor: pointer;
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1em;
        font-weight: 700;
        padding: 0.75em 2em;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s ease;
        width: fit-content;
    }

    #exstream-resources .button:hover {
        background-color: #104e8b;
    }


    /* Content Suite Banner */
    #contentsuite-banner {
        background-color: rgb(255, 239, 219);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 8em 2em 2em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        position: relative;
        min-height: 70vh;
    }


    #contentsuite-banner .inner-content {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    #contentsuite-banner .banner-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        padding: 2em 0;
    }


    #contentsuite-banner .banner-title {
        flex: 1;
        text-align: left;
        color: #ffffff;
    }

    #contentsuite-banner .banner-title h1 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 3.5em;
        font-weight: 800;
        margin: 0;
        letter-spacing: 0.1em;
        line-height: 1;
    }

    #contentsuite-banner .banner-title p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        margin-top: 2em;
        font-size: 2em;
        color:#a89191;
    }


    #contentsuite-banner .feature-note {
        flex: 0 50px 350px;
        background: #f9f3f3;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1.5em;
        position: relative;
        z-index: 2;
        margin-top: -1em;
    }

    #contentsuite-banner .feature-note p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #333333;
        margin-bottom: 1em;
        font-weight: 600;
    }

    #contentsuite-banner .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #contentsuite-banner .feature-list li {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.1em;
        color: #333333;
        margin-bottom: 0.8em;
        display: flex;
        align-items: center;
    }

    #contentsuite-banner .feature-list li i {
        color: #2ebAAE;
        margin-right: 0.5em;
        font-size: 1.1em;
    }

    /* Content Suite Overview */
    #contentsuite-overview {
        margin-top: 5em;
        padding: 4em 2em;
        background: #ffffff;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        position: relative;
        z-index: 1;
    }

    #contentsuite-overview .inner-content {
        max-width: 1200px;
        width: 100%;
    }

    #contentsuite-overview .overview-content {
        display: flex;
        align-items: center;
        gap: 2em;
    }

    #contentsuite-overview .overview-video {
        flex: 1;
    }

    #contentsuite-overview .overview-video iframe {
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #contentsuite-overview .overview-text {
        flex: 1;
        text-align: left;
    }

    #contentsuite-overview h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 1em;
        letter-spacing: 0.1em;
    }

    #contentsuite-overview p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1em;
        color: #646464;
        line-height: 1.8;
    }


    /* Content Suite Benefits */
    #contentsuite-benefits {
        padding: 4em 2em;
        background: #f9f9f9;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    #contentsuite-benefits .inner-content {
        max-width: 1200px;
        width: 100%;
        text-align: left;
    }

    #contentsuite-benefits h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2.5em;
        font-weight: 800;
        color: #3c3b3b;
        letter-spacing: 0.1em;
    }

    #contentsuite-benefits .benefits-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        gap: 2em;
    }

    #contentsuite-benefits .benefit-item {
        flex: 1;
        display: flex;
        align-items: flex-start;
        background: #ffffff;
        padding: 1.5em;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #contentsuite-benefits .sidebar {
        width: 5px;
        height: 100%;
        background: #000000;
        margin-right: 1em;
        flex-shrink: 0;
    }

    #contentsuite-benefits .benefit-content {
        flex: 1;
        text-align: left;
    }

    #contentsuite-benefits .benefit-content h3 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        font-weight: 700;
        color: #3c3b3b;
        margin-bottom: 0.5em;
    }

    #contentsuite-benefits .benefit-content p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.1em;
        color: #646464;
        line-height: 1.6;
    }

    /* Capture Center Banner */
    #capturecenter-banner {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9; 
    }

    #capturecenter-banner .inner-content {
        margin-top: 8%;
        margin-bottom: 8em;
        max-width: 1000px;
        width: 100%;
    }

    #capturecenter-banner .banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2em;
    }

    #capturecenter-banner .banner-text {
        flex: 1;
        text-align: left;
    }

    #capturecenter-banner .banner-text h1 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2.5em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 0.5em;
        letter-spacing: 0.1em;
    }

    #capturecenter-banner .banner-text p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        line-height: 1.8;
    }

    #capturecenter-banner .banner-image {
        flex: 1;
        width: 400px;
        height: 300px;
        overflow: hidden;
    }

    #capturecenter-banner .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    #capturecenter-demo {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9;
    }

    #capturecenter-demo .inner-content {
        max-width: 1000px;

    }

    #capturecenter-demo .demo-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2em;
    }

    #capturecenter-demo .demo-text {
        flex: 1;
        text-align: left;
    }

    #capturecenter-demo .demo-text h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 0.5em;
        letter-spacing: 0.1em;
    }

    #capturecenter-demo .demo-text p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        line-height: 1.8;
        margin-bottom: 1em;
    }

    #capturecenter-demo .demo-text .button {
        background-color: #1e90ff;
        border: none;
        color: #ffffff;
        font-size: 1em;
        padding: 0.75em 2em;
        text-transform: uppercase;
        transition: background-color 0.2s ease;
    }

    #capturecenter-demo .demo-text .button:hover {
        background-color: #104e8b;
    }

    #capturecenter-demo .demo-image {
        flex: 1;
        width: 400px;
        height: 300px;
        overflow: hidden;
    }

    #capturecenter-demo .demo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }


    /* Capture Center Feature */
    #capturecenter-feature {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #fff;
    }

    #capturecenter-feature .feature-content {
        max-width: 800px;
        width: 100%;
        text-align: center;
    }

    #capturecenter-feature h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #333;
        margin-bottom: 0.5em;
    }

    #capturecenter-feature p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1em;
        color: #666;
        margin-bottom: 1.5em;
    }

    #capturecenter-feature .feature-image img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Capture Center Benefits */
    #capturecenter-benefits {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9;
    }

    #capturecenter-benefits .benefits-grid {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }

    #capturecenter-benefits .benefit-item {
        text-align: center;
        padding: 1.5em;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #capturecenter-benefits .benefit-item i {
        font-size: 1.5em;
        color: #1E90FF;
        margin-bottom: 0.5em;
    }

    #capturecenter-benefits .benefit-item h3 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.5em;
    }

    #capturecenter-benefits .benefit-item p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 0.9em;
        color: #666;
        line-height: 1.6;
    }


    #ricoh-banner {
        background-image: url('../images/ricohbanner.jpg');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;
        padding: 8em 2em 2em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        position: relative;
        min-height: 70vh;
    }

        #ricoh-banner .inner-content {
            max-width: 1000px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 1; 
        }

        #ricoh-banner .banner-text {
            text-align: left;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

            #ricoh-banner .banner-text h1 {
                font-family: "Source Sans Pro", Helvetica, sans-serif;
                color: #ffffff;
                font-size: 2.5em;
                font-weight: 800;
                margin-top: 2em;
                margin-bottom: auto;
                letter-spacing: 0.1em;
            }

            #ricoh-banner .banner-text p {
                font-family: "Source Sans Pro", Helvetica, sans-serif;
                margin-top: 2em;
                font-size: 1.2em;
                line-height: 1.6;
            }

        #ricoh-banner:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3); 
            z-index: 0; 
        }

    #ricoh-overview {
        padding: 4em 2em;
        background: #ffffff;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

        #ricoh-overview .inner-content {
            max-width: 1000px;
            width: 100%;
            text-align: center;
        }

        #ricoh-overview h2 {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 2em;
            font-weight: 800;
            color: #3c3b3b;
            margin-bottom: 1em;
            letter-spacing: 0.1em;
        }

        #ricoh-overview p {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 1.2em;
            color: #646464;
            line-height: 1.8;
        }

        #ricoh-benefits {
            padding: 4em 2em;
            background: #f9f9f9;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-sizing: border-box;
        }

        #ricoh-benefits .inner-content {
            max-width: 1000px;
            width: 100%;
        }

        #ricoh-benefits h2 {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 2em;
            font-weight: 800;
            color: #3c3b3b;
            margin-bottom: 2em;
            text-align: center;
            letter-spacing: 0.1em;
        }

        #ricoh-benefits .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2em;
            width: 100%;
        }

        #ricoh-benefits .benefit-item {
            text-align: center;
        }

        #ricoh-benefits .benefit-item .icon-text-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5em;
        }

        #ricoh-benefits .benefit-item .icon-text-container i {
            margin-right: 0.22em; 
        }

        #ricoh-benefits .benefit-item .icon-text-container span {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 1.2em;
            font-weight: 700;
            color: #2ebAAE;
        }

        #ricoh-benefits .benefit-item p {
            font-family: "Source Sans Pro", Helvetica, sans-serif;
            font-size: 1.1em;
            color: #646464;
            margin-top: 0.5em;
            line-height: 1.6;
        }


        #ricoh-resources {
        padding: 4em 2em;
        background: #ffffff;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: left;
        box-sizing: border-box;
    }

    #ricoh-resources .inner-content {
        max-width: 1000px;
        width: 100%;
        margin-left: 5em;
    }

    #ricoh-resources h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 1em;
        letter-spacing: 0.1em;
    }

    #ricoh-resources .resource-container {
        display: flex;
        align-items: center;
        gap: 2em;
        margin-bottom: 1.5em;
    }

    #ricoh-resources .resource-text {
        flex: 1;
    }

    #ricoh-resources .resource-image {
        flex: 0 0 auto;
    }

    #ricoh-resources .resource-img {
        max-width: 200px;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-right: 3em;
    }

    #ricoh-resources p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        margin-bottom: 1.5em;
        line-height: 1.8;
    }

    #ricoh-resources .button {
        background-color: #1e90ff;
        border: none;
        color: #ffffff;
        cursor: pointer;
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1em;
        font-weight: 700;
        padding: 0.75em 2em;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.2s ease;
        width: fit-content;
    }

    #ricoh-resources .button:hover {
        background-color: #104e8b;
    }

    
    /* CMOD */
    #CMOD-banner {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9; 
    }

    #CMOD-banner .inner-content {
        margin-top: 8%;
        margin-bottom: 8em;
        max-width: 1000px;
        width: 100%;
    }

    #CMOD-banner .banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2em;
    }

    #CMOD-banner .banner-text {
        flex: 1;
        text-align: left;
    }

    #CMOD-banner .banner-text h1 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2.5em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 0.5em;
        letter-spacing: 0.1em;
    }

    #CMOD-banner .banner-text p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        line-height: 1.8;
    }

    #CMOD-banner .banner-image {
        flex: 1;
        width: 400px;
        height: 300px;
        overflow: hidden;
    }

    #CMOD-banner .banner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    #CMOD-demo {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9;
    }

    #CMOD-demo .inner-content {
        max-width: 1000px;
        width: 100%;
    }

    #CMOD-demo .demo-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2em;
    }

    #CMOD-demo .demo-text {
        flex: 1;
        text-align: left;
    }

    #CMOD-demo .demo-text h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #3c3b3b;
        margin-bottom: 0.5em;
        letter-spacing: 0.1em;
    }

    #CMOD-demo .demo-text p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        color: #646464;
        line-height: 1.8;
        margin-bottom: 1em;
    }

    #CMOD-demo .demo-text .button {
        background-color: #1e90ff;
        border: none;
        color: #ffffff;
        font-size: 1em;
        padding: 0.75em 2em;
        text-transform: uppercase;
        transition: background-color 0.2s ease;
    }

    #CMOD-demo .demo-text .button:hover {
        background-color: #104e8b;
    }

    #CMOD-demo .demo-image {
        flex: 1;
        width: 400px;
        height: 300px;
        overflow: hidden;
    }

    #CMOD-demo .demo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }


    /* Capture Center Feature */
    #CMOD-feature {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #fff;
    }

    #CMOD-feature .feature-content {
        max-width: 800px;
        width: 100%;
        text-align: center;
    }

    #CMOD-feature h2 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 800;
        color: #333;
        margin-bottom: 0.5em;
    }

    #CMOD-feature p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1em;
        color: #666;
        margin-bottom: 1.5em;
    }

    #CMOD-feature .feature-image img {
        max-width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Capture Center Benefits */
    #CMOD-benefits {
        padding: 4em 2em;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        background: #f9f9f9;
    }

    #CMOD-benefits .benefits-grid {
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2em;
    }

    #CMOD-benefits .benefit-item {
        text-align: center;
        padding: 1.5em;
        background: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    #CMOD-benefits .benefit-item i {
        font-size: 1.5em;
        color: #1E90FF;
        margin-bottom: 0.5em;
    }

    #CMOD-benefits .benefit-item h3 {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 1.2em;
        font-weight: 700;
        color: #333;
        margin-bottom: 0.5em;
    }

    #CMOD-benefits .benefit-item p {
        font-family: "Source Sans Pro", Helvetica, sans-serif;
        font-size: 0.9em;
        color: #666;
        line-height: 1.6;
    }


/* Responsive Design */

/* Tablet Mode (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    body, button {
        font-size: 12px; 
    }

    h1 {
        font-size: 12px;
    }

    h2 {
        font-size: 12px;
    }

    h3 {
        font-size: 12px;
    }

    p {
        font-size: 12px;
    }

    /* General Adjustments */
    #wrapper, .mini-posts, .main-post, #footer, .milestones-section, .news-section, .solutions-section, .faq-section, .contact-section {
        padding: 1em; 
    }

    /* Mini Posts */
    .mini-posts .mini-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mini-post .image {
        width: 250px;
        height: 250px; 
    }

    .main-post .image {
        width: 350px;
        height: 350px; 
    }

    .main-post .customer-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    .main-post .customer .image {
        width: 180px;
        height: 180px;
    }


    /* Header */
    #header .links ul li a {
        font-size: 1.1em;
    }

    /* Banner */
    #banner {
        height: 60vh;
    }

    #banner header h1 {
        font-size: 2.2em;
    }

    #banner header p {
        font-size: 1.1em;
    }


    /* News */
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date, .news-list-title {
        font-size: 1.1em; 
    }

    /* FAQ */
    .faq-question {
        font-size: 1.3em;
    }

    .faq-answer {
        font-size: 1.1em;
    }

    /* Contact */
    .contact-columns {
        flex-direction: column;
    }

    .contact-map iframe {
        height: 300px; 
    }

    /* Exstream, ContentSuite, etc. */
    #exstream-resources .inner-content .resource-text,
    #ricoh-resources .inner-content .resource-text{
        font-size: 0.9em;
    }

    #exstream-banner, #contentsuite-banner, #ricoh-banner {
        min-height:60vw;
    }

    #exstream-benefits .benefits-grid,
    #ricoh-benefits .benefits-grid,
    #contentsuite-benefits .benefits-container,
    #capturecenter-benefits .benefits-grid,
    #CMOD-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    #exstream-resources .inner-content,
    #ricoh-resources .inner-content {
        margin-left: 0em;
    }

    .benefit-item p {
        font-size: 1.2em; 
    }
}

/* Mobile Mode (max-width: 767px) */
@media screen and (max-width: 767px) {
    body, button {
        font-size: 12px; 
    }

    h1 {
        font-size: 12px;
    }

    h2 {
        font-size: 12px;
    }

    h3 {
        font-size: 12px;
    }

    p {
        font-size: 12px;
    }
    /* General Adjustments */
    #wrapper, .mini-posts, .main-post, #footer, .milestones-section, .news-section, .solutions-section, .faq-section, .contact-section {
        padding: 1em; 
    }


    /* Mini Posts */
    .mini-posts {
        padding: 1em;
    }

    .mini-posts h2{
         padding: 0 0 0 6em;
    }

    .mini-posts .mini-post-grid {
        grid-template-columns: 1fr;
    }

    .mini-post .image {
        width: 100%;
        height: auto; 
    }

    /* Main Post */
    .main-post .inner-content {
        flex-direction: column; 
    }

    .main-post .image {
        width: 100%;
        height: auto;
        margin: 0 0 1em 0;
    }

    .main-post .text-content {
        margin-left: 0;
        text-align: center;
    }

    .custom-select {
        width: 90%;
        max-width: 530px;
        margin: 0em auto;
        margin-bottom: 3em;
    }

    .select-button {
        font-size: 1em !important;
        padding: 1em !important;
        text-align: center;
    }

    .select-button::after {
        content: '▼'; 
        position: absolute;
        right: 0.75em;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8em; 
        color: #333; 
        pointer-events: none;
    }
    .select-options {
        top: 100%; 
        left: 0;
        right: 0;
        font-size: 1em; 
    }

    .select-options li {
        padding: 0.5em 1em;
    }

    .main-post .customer .image {
        width: 200px;
        height: 200px;
    }

    /* Header */
    #header {
        height: 5em;
    }

    #header a{
        font-size: 0.5em;
    }

    #header h1 {
        margin-top: 1em;
    }

    #header h1 a {
        font-size: 1.5em;
    }
    
    #header .links {
        display: flex;
        font-size: 0.5em;
    }

    #header .links ul li {
        border-left: solid 1px rgba(160, 160, 160, 0.3);
        line-height: 1;
        margin-left: 1em;
        padding-left: 1em;
    }

    #header .links ul li:first-child {
        border-left: 0;
        margin-left: 0;
        padding-left: 0;
    }

    #header .links ul li a {
        border-bottom: 0;
        font-family: "Source Sans Pro";
        font-size: 1em;
        font-weight: bold;
        letter-spacing: 0.1em;
    }

    #header ul {
        list-style: none;
        margin: 0;
        padding-left: 0;
    }
    
    #header .links ul li {
        display: inline-block;
        /*display: block;*/
        border-left: none;
        padding: 0;
    }

    #header .translate {
        margin-right: 0;
        font-size: 0.8em;
    }

    #header .translate ul li {
        height: inherit;
        line-height: inherit;
    }


    /* Banner */
    #banner {
        max-width: 100%;
        height: 70vh;
        flex-direction: column;
    }

    #banner .inner {
        flex-direction: column;
        text-align: center;
    }

    #banner .logo img {
        max-width: 120px;
    }

    #banner header h1 {
        font-size: 1.8em;
    }

    #banner header p {
        font-size: 1em;
    }

    /* Footer */
    #footer .footer-content {
        flex-direction: column;
    }

    #footer .footer-section {
        margin-right: 0;
        margin-bottom: 1em;
    }

    /* Milestones */
    .milestones-section {
        padding: 0;
        margin-left: 0;
        transform: none;
        font-size: 1.5em;
    }

    .milestones-section .timeline-year {
        width: 100%;
        margin-left: 0 !important;
        text-align: left;
    }

    .milestones-section .timeline:before {
        display: none;
    }

    .milestones-section .timeline-year h3:before {
        left: -30px;
    }

    .milestones-section .timeline-year.right h3:before {
        left: -30px;
    }

    /* News */
    .news-section header h1 {
        font-size: 2.5em !important;
    }

    .news-section header p {
        font-size: 1.5em !important; 
    }

    .news-header {
        flex-direction: row;
        font-size: 1.5em;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date, .news-list-title{
        font-size: 1.2em;
    }

    /* Solutions */
    .solutions-section {
        padding: 1em 1.5em 0em 1.5em;
    }
    

    .solution-index {
        display: none;
    }   

    .solution-index ul {
        flex-direction: row;
        gap: 0.5em;
        font-size:2em;
    }

    .solution-item, .solution-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .solution-image {
        width: 100%;
        height: auto;
        margin: 2em 1em 0em 0;
    }

    .solution-text {
        margin-right: auto;
        font-size:1.5em;
    }

    .solution-item.reverse .solution-text {
    margin-right: 0;
    margin-left: 0em;
    }

    .solution-button {
        display: block;
        margin: 0 auto !important; 
        width: 20em; 
    }

    /* FAQ */
    .faq-question {
        font-size: 1.1em;
    }

    .faq-answer {
        font-size: 1em;
    }

    /* Contact */
    .contact-banner {
        height: 40vh;
    }

    .contact-columns {
        flex-direction: column;
        font-size: 1.5em;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Exstream, ContentSuite, etc. Specific */
    #exstream-banner, #contentsuite-banner, #ricoh-banner {
        padding: 6em 1em 1em 1em;
        min-height:90vw;
    }

    #exstream-benefits .benefits-grid,
    #ricoh-benefits .benefits-grid,
    #capturecenter-benefits .benefits-grid,
    #CMOD-benefits .benefits-grid {
        grid-template-columns: 1fr;
        font-size: 1.3em;
    }

    #contentsuite-banner .banner-content {
        flex-direction: column;
    }

    #contentsuite-banner .feature-note {
        margin-top: 1em;
    }

    #contentsuite-overview .overview-content,
    #ricoh-overview .inner-content {
        flex-direction: column;
        font-size: 1.3em;
    }

    #contentsuite-benefits .benefits-container {
        flex-direction: column;
    }

    #capturecenter-banner .banner-content,
    #CMOD-banner .banner-content,
    #capturecenter-demo .demo-content,
    #CMOD-demo .demo-content {
        flex-direction: column;
    }

    #exstream-resources .inner-content,
    #ricoh-resources .inner-content {
        margin-left: 0em;
        font-size: 1.5em ; 
    }

    #exstream-resources .inner-content .resource-text,
    #ricoh-resources .inner-content .resource-text{
        align-self: flex-start;
    }

    #exstream-resources .resource-container,
    #ricoh-resources .resource-container {
        flex-direction: column;
    }

    #exstream-resources .resource-container a,
    #ricoh-resources .resource-container a {
        flex-direction: column;
        font-size: 0.5em !important;
    }

    #exstream-resources .resource-img,
    #ricoh-resources .resource-img {
        margin-left: 0em;
        margin-bottom: 1em;
    }

    .benefit-item p {
        font-size: 1.5em;  
    }
}

.menu-toggle {
    display: none; 
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001; 
}

.hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #3c3b3b; 
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

/* Animate to 'X' when open */
.menu-toggle:checked + .hamburger span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Menu Overlay (Minimalist Design) */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    padding: 2em 2em;
}

.mobile-menu .mobile-header {
    display: flex;
    align-items: center;
    padding: 2em 1em 3em;
    background: rgba(255, 255, 255, 1);
}

.mobile-menu .mobile-header .mobile-logo {
    width: 40px;
    height: auto;
    margin-right: 0.5em;
}

.mobile-menu .mobile-header h2 {
    font-size: 1.2em;
    color: #3c3b3b;
    margin: 0;
    white-space: nowrap;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.mobile-menu li {
    width: 100%;
    font-size: 4em;
    margin-right: 3em;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0em 0.5em;
    font-size: 1.5em;
    color: #3c3b3b;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
    width: 130%;
    box-sizing: border-box;
}

.mobile-menu a::after {
    content: 'ᐳ';
    font-size: 0.8em;
    color: #333;
    flex-shrink: 0;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 1);
    color: #333333;
}

/* Mobile Menu Footer for Phone and Facebook */
.mobile-menu .mobile-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    border-top: 1px solid rgba(160, 160, 160, 0.3);
    font-size: 1.8em;
}

.mobile-menu .mobile-footer a {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    color: #3c3b3b;
    text-decoration: none;
    transition: color 0.2s ease;
    width: auto;
}

.mobile-menu .mobile-footer a:hover {
    color: #333333;
}

.mobile-menu .mobile-footer a::after {
    content: none;
}

.mobile-menu .mobile-footer .phone {
    justify-content: flex-start;
}

.mobile-menu .mobile-footer .facebook {
    justify-content: flex-end;
}

.mobile-menu .mobile-footer i {
    margin-right: 0.5em; 
    font-size: 1.2em;
    color: #3c3b3b;
    transition: color 0.2s ease;
}

.mobile-menu .mobile-footer a:hover i {
    color: #333333;
}

/* Show menu when checkbox is checked */
.menu-toggle:checked ~ .mobile-menu {
    display: flex;
}

/* Optional: Dim the content slightly more (if backdrop-filter isn't enough) */
.menu-toggle:checked ~ #wrapper {
    pointer-events: none;
}

/* Mobile-Specific Adjustments */
@media screen and (max-width: 767px) {
    #header .links {
        display: none;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 1em;
        top: 1.5em;
    }

    /* Ensure header accommodates the hamburger */
    #header {
        position: fixed;
        padding: 1em;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #header .translate {
        position: absolute;
        right: 4em;
        margin-right: 0;
        font-size: 1em;
    }

    #header .translate ul {
        display: flex;
        gap: 0.5em;
    }

    .menu-toggle:checked ~ body {
        overflow: hidden;
    }
}