body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background: #f2f2f2;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header, footer {
    width: 100%;
    padding: 10px 0;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero .container {
    justify-content: center;;
}

header .container, footer .container, main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .logo img, footer .logo img {
    height: 35px;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
}

.hero {
    padding: 150px 0;
    text-align: center;
}

.hero .logo.large {
    font-size: 48px;
    font-weight: bold;
}

.hero .logo.large img {
    width: 100%;
    max-width: 300px;
}

.hero h2 {
    font-size: 24px;
    margin-top: 10px;
    font-weight: normal;
}

.hero .highlight {
    color: #b30000;
}

.display-img {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq h3 {
    margin-top: 85px;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

footer .footer-section {
    padding: 10px;
}

footer .footer-section:first-child {
    flex: 0 0 50%;
}

footer .footer-section:nth-child(2), footer .footer-section:nth-child(3) {
    flex: 1;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
}

footer .footer-section ul li {
    margin-bottom: 10px;
}

footer .footer-section ul li a {
    color: #333;
    text-decoration: none;
}

footer .footer-section .social-media {
    display: flex;
}

footer .footer-section .social-media li {
    margin-right: 10px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: darkred;
    margin: 4px 0;
}

.close-menu {
    display: none;
    font-size: 90px;
    cursor: pointer;
    color: darkred;
    margin-top: 30px;
}

@media (max-width: 1920px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    header {
      padding: 10px 0 !important;
    }

    header, footer, main .container {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        justify-content: center;
        transition: left 0.3s ease;
        font-size: 2em;
    }

    header nav ul.active {
        left: 0;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .burger-menu {
        display: flex;
    }

    .close-menu {
        display: block;
        bottom: 30px;
    }

    .zigzag-container {
        flex-direction: column;
    }

    .zigzag-container:nth-child(2) {
        flex-direction: column-reverse;
    }

    .zigzag-container .content, .zigzag-container img {
        padding: 0;
        text-align: center;
    }

    footer .container {
        flex-direction: column-reverse;
        align-items: center;
    }

    footer .footer-section {
        padding: 20px 0;
        width: 100%;
    }

    footer .footer-section:first-child {
        flex: 1;
    }

    footer .footer-section:nth-child(2), footer .footer-section:nth-child(3) {
        flex: 1;
    }
}
