<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.test-content-wrapper {
    width: 100%;
    padding: 150px 0;
}

.test-content-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 11%;
}

.test-content-section h2, .test-content-section p {
    color: white;
}

.test-content-columns {
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

/* Image Column */
.image-column {
    flex: 0 0 auto;
    width: 632px;
}

.section-image {
    width: 100%;
    height: auto;
    margin: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Column */
.content-column {
    flex: 1;
    max-width: 750px;
}

.content-title {
    margin: 0 0 30px;
}

.content-bold-intro {
    margin-bottom: 40px;
}

/* test Paragraphs */
.test-paragraphs {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.left-paragraph,
.right-paragraph {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid var(--color-lime-green);

    p{
        margin-bottom: 0;
    }
}

.content-bold-middle {
    margin: 40px 0;
}

.entry-content .test-content-section p a,
.entry-content p a{
    display: inline-block;
    text-decoration: underline;
    color: var(--color-lime-green);
    font-weight: 600;
}

.entry-content .test-content-section p a:hover,
.entry-content p a:hover {
    text-decoration: none;
    color: var(--color-lime-green);
    box-shadow: none;
}

/* Button Styling */
.content-button {
    margin-top: 40px;
}

.content-button .wp-block-button__link {
    background-color: var(--color-lime-green);
    color: var(--color-deep-purple);
    width: 315px;
    height: 63px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 700;
}

@media (hover: hover) {
    .content-button .wp-block-button__link:hover {
        background-color: var(--color-deep-purple);
        color: var(--color-lime-green);
        border: 1px solid var(--color-lime-green);
    }
}

/* Responsive Styles */
@media screen and (max-width: 1599px) {

    .test-content-section {
        padding: 0 9% 0 11%;
    }

    .test-content-columns {
        gap: 50px;
    }

    .content-bold-intro {
        margin-bottom: 20px;
    }
    
    /* test Paragraphs */
    .test-paragraphs {
        margin-bottom: 20px;
    }

    .content-bold-middle {
        margin: 20px 0;
    }
}

@media screen and (max-width: 1199px) {
    .test-content-wrapper {
        padding: 80px 0;
    }

    .test-content-columns {
        gap: 40px;
    }

    .image-column {
        width: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .test-content-wrapper {
        padding: 60px 0;
        text-align: center;
    }

    .test-content-wrapper .wp-block-columns.test-content-columns {
        flex-wrap: wrap !important;
        flex-direction: column;
        gap: 40px;
        align-items: center !important;
    }

    .image-column {
        width: 632px;
        max-width: 100%;
    }

    .section-image {
        width: 100%;
    }

    .content-column {
        width: 100%;
        max-width: 100%;
    }

    .left-paragraph p, .right-paragraph p {
        text-align: left;
    }

    .wp-block-buttons-is-layout-flex {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .test-content-wrapper {
        padding: 40px 0;
    }

    .test-paragraphs {
        flex-direction: column;
        gap: 20px;
    }

    .content-button .wp-block-button__link {
        width: 268px;
        height: 54px;
    }
}</pre></body></html>