.container {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.header-image {
    width: 100%;
    text-align: center;
    background-color: #fff3d4;
    padding: 15px 0;
    margin-bottom: 15px;
}

.header-image img {
    max-width: 100%;
    height: auto;
}

.module-title {
    background-color: #fff3d4;
    padding: 15px 20px;
    margin-bottom: 15px;
}

.module-title h1 {
    font-size: 1.6em;
    margin: 0;
    line-height: 1.3;
}

.main-content {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.content-left {
    flex: 3;
}

.content-right {
    flex: 1;
}

.module-content {
    background-color: #fff3d4;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.module-content p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: justify;
}

.module-content ol {
    padding-left: 20px;
    margin: 15px 0;
}

.module-content li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-section {
    background-color: #fff3d4;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.video-section h2 {
    font-size: 1.2em;
    margin: 0;
}

.sidebar-link {
    background-color: #fff3d4;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s ease;
}

.sidebar-link:hover {
    background-color: #e6d5b3;
}

.sidebar-link h3 {
    font-size: 1.1em;
    margin: 0;
    line-height: 1.3;
}

.disclaimer {
    background-color: #fff3d4;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 0.9em;
    line-height: 1.4;
}

.disclaimer p {
    margin: 10px 0;
}

.partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    gap: 20px;
}

.partners img {
    max-height: 50px;
    width: auto;
}

/* Navigation styles */
.page-navigation {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 600px;
}

.nav-button {
    background-color: #fff3d4;
    padding: 10px 20px;
    text-decoration: none;
    color: inherit;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.nav-button:hover {
    background-color: #e6d5b3;
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-left,
    .content-right {
        width: 100%;
    }

    .module-title h1 {
        font-size: 1.4em;
    }

    .container {
        width: 98%;
        padding: 10px;
    }

    .partners {
        flex-wrap: wrap;
        justify-content: center;
    }

    .partners img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .module-title h1 {
        font-size: 1.2em;
    }

    .module-content p,
    .module-content li {
        font-size: 0.95em;
    }

    .sidebar-link h3 {
        font-size: 1em;
    }
}
