.module-3 {
    max-width: 1890px;
    padding-inline: 30px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-inline: auto;
    margin-top: 200px;
}

.module-3 .text {
    max-width: 896px;
    margin-bottom: 40px;
}

.module-3 .text h2 {
    font-size: var(--subtitle);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.module-3 p {
    max-width: 665px;
    font-size: var(--text);
    line-height: 1.5;
    color: var(--text-primary);
    font-weight: 300;
}

.module-3 .button {
    margin-left: auto;
}

.module-3 .button .btn {
    padding: 16px 32px;
    white-space: nowrap;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .module-3 {
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .module-3 .text {
        max-width: 750px;
    }

    .module-3 .text h2 {
        font-size: calc(var(--subtitle) * 0.9);
    }

    .module-3 p {
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .module-3 {
        margin-top: 80px;
        margin-bottom: 80px;
        padding-inline: 20px;
    }

    .module-3 .text {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .module-3 .text h2 {
        font-size: calc(var(--subtitle) * 0.8);
        margin-bottom: 20px;
    }

    .module-3 p {
        max-width: 100%;
        font-size: calc(var(--text) * 0.95);
    }

    .module-3 .button {
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .module-3 {
        margin-top: 60px;
        margin-bottom: 60px;
        padding-inline: 15px;
    }

    .module-3 .text h2 {
        font-size: calc(var(--subtitle) * 0.7);
        margin-bottom: 16px;
    }

    .module-3 p {
        font-size: calc(var(--text) * 0.9);
    }

    .module-3 .button .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
}