body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0(226, 226, 226);
}

.header-section {
    background-color: #000000;
    text-align: center;
    padding: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.header-section h1 {
    margin: 0;
    font-size: 2.5em;
}

.header-section p {
    margin: 0;
    font-size: 1.2em;
    color: #666;
}

main {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    width: 70%;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.content-row.reverse-row {
    flex-direction: row-reverse;
}

.content-image {
    flex: 1;
    padding: 10px;
    min-width: 250px; /* Ensures a minimum size */
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-text {
    flex: 1;
    padding: 10px;
    min-width: 250px; /* Ensures a minimum size */
}

.content-text h2 {
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 30px;
}

.content-text p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
}

.content-text a {
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    color: #000000;
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: #000000;
    transition: all 0.3s;
    z-index: -1;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    width: 100%;
}

@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
        width: 100%;
    }

    .content-row.reverse-row {
        flex-direction: column;
    }

    .content-image, .content-text {
        flex: none;
        width: 100%;
        padding: 0;
    }

    .content-image {
        margin-bottom: 20px;
    }
    .content-wrapper {
        width: 100%;
        padding: 0 10px;
    }    
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .content-text h2 {
        font-size: 1.5em;
    }

    .content-text p {
        font-size: 1em;
    }
}

.content-text ul {
    padding: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.content-text li {
    list-style-type: none; 
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.content-text li:last-child {
    border-bottom: none;
}

.content-text a 
{
    text-decoration: none; 
    transition: color 0.3s ease-in-out;
    color: #000000; 
}

.content-text a:hover,
.content-text a:focus {
    text-decoration: underline; 
}

.content-text h2 {
    color: #000; 
    font-weight: normal;
}


@media (max-width: 768px) {
    .content-text li {
        padding: 15px 0; 
    }
}
