* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    overscroll-behavior-x: none;
}

body {
    background-color: #121212;
    font-family: 'Lexend', sans-serif;
    color: #ffffff;
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

.banner {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center center;
    border-bottom: 4px solid #1E1E1E;
    padding: 20px;
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banner-text {
    color: #ffffff;
    font-size: 24px;
    margin: 20px 0;
}

.shortcut-icon {
    width: 100%;
    max-width: 420px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 20px;
}

.banner p {
    color: #ffffff;
    font-size: 24px;
    margin: 20px 0;
}

.content {
    margin-left: 200px;
    padding: 20px;
    overflow-x: hidden;
    overflow-x: clip;
}

.modules {
    margin-top: 32px;
}

.modules-header {
    margin-bottom: 28px;
}

.download-section {
    margin-top: 20px;
}

.modules h2 {
    color: #00A65A;
    font-size: 28px;
    margin-bottom: 10px;
}

.modules-header p {
    color: #b6b6b6;
    font-size: 16px;
    line-height: 1.6;
    max-width: 760px;
}

.module-group + .module-group {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid #262626;
}

.module-group-heading {
    margin-bottom: 16px;
}

.module-group h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.module-group p {
    color: #a8a8a8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
}

.module-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
}

.module-gallery > img,
.module-gallery > .module-image-crop {
    width: min(100%, 300px);
    flex: 0 1 300px;
}

.module-gallery img {
    height: auto;
    display: block;
}

.module-image-crop {
    display: block;
    overflow: hidden;
}

.module-image-crop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.module-image-crop--trim-bottom {
    aspect-ratio: 977 / 1970;
}

.download-section h3 {
    color: #00A65A;
    font-size: 20px;
    margin-bottom: 10px;
}

.download-button,
.download-guide-button {
    background-color: #00A65A;
    color: #ffffff;
    font-size: 16px;
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.download-button:hover,
.download-guide-button:hover {
    background-color: #1E1E1E;
}

.download-button,
.download-guide-button {
    margin-bottom: 20px;
}

.videos {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.videos iframe {
    max-width: 48%;
    height: 315px;
    border: none;
    margin-bottom: 10px;
}

.disclaimer h2 {
    color: #00A65A;
    font-size: 20px;
    margin-bottom: 10px;
}

.disclaimer p {
    margin-bottom: 20px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content {
        margin-left: 0;
        padding: 20px 16px;
    }

    .banner {
        min-height: 200px;
    }

    .videos {
        flex-direction: column;
    }

    .videos iframe {
        max-width: 100%;
    }

    .download-button,
    .download-guide-button {
        font-size: 18px;
    }

    .shortcut-icon {
        max-width: 240px;
        margin-top: 6px;
        margin-bottom: 26px;
    }

    .modules {
        margin-top: 26px;
    }

    .modules-header {
        margin-bottom: 22px;
    }

    .module-group + .module-group {
        margin-top: 28px;
        padding-top: 22px;
    }

    .module-gallery {
        gap: 12px;
    }

    .module-gallery > img,
    .module-gallery > .module-image-crop {
        width: calc(50% - 6px);
        flex-basis: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .shortcut-icon {
        max-width: 220px;
    }

    .modules-header p {
        font-size: 15px;
    }

    .module-group h3 {
        font-size: 18px;
    }

    .module-group p {
        font-size: 14px;
    }

    .module-gallery {
        gap: 10px;
    }

    .module-gallery > img,
    .module-gallery > .module-image-crop {
        width: calc(50% - 5px);
        flex-basis: calc(50% - 5px);
    }
}