.main-content {
    max-width: 85%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: var(--font-main);
}

.container {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heading {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--black);
}

.description {
    font-size: var(--fs-base);
    color: var(--gray);
    max-width: 500px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 3px solid var(--orange);
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: var(--fs-base);
    font-weight: 600;
    font-family: var(--font-main), monospace;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
}

.back-button:hover {
    background-color: var(--orange);
    color: var(--white);
}


.illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img {
    width: 500px;
    height: 500px;
    height: auto;
}
