/* Existing styles remain unchanged */
.about-us-content {
    background-color: #ffffff;
    padding: 120px 30px;
    text-align: center;
}

.title-container {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 4px solid #b49a04;
    font-weight: 800;
    border-radius: 15px;
    color: #b49a04;
    width: clamp(50px, 100%, 1000px);
    margin: 50px auto 0px auto;
    transition: transform 0.3s ease;
    font-size: clamp(.5rem, 3vw, 2.5rem);
    background-color: #e6e6e6;
    padding: 40px 5px;
}

.title-container:hover {
    transform: scale(1.02);
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-us-content .about-us-placeholder,
.about-us-content .sunset {
    max-width: 100%;
    width: clamp(250px, 40vw, 300px);
    height: auto;
    border-radius: 30px;
    display: block;
    margin: 0 auto;
}

.about-us-content .sunset {
    transition: transform 0.3s ease;
}

.about-us-content .sunset:hover {
    transform: scale(1.05);
}

.text-content h2 {
    font-size: 2em;
    margin: 20px 0 50px 0;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 15px 0;
}

.text-content ul {
    margin: 50px 0 50px 0px;
    padding-left: 0;
    list-style-position: inside;
}

.text-content li {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: bold;
    text-indent: 0;
}

.text-content {
    flex: 1;
    padding: 0 20px;
}

.about-us-content::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 1000px) {
    .about-us-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        justify-content: center;
        padding: 130px 15px;
    }
    .title-container {
        width: 100%;
        margin-top: 30px;
    }
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
    .about-us-content .about-us-placeholder,
    .about-us-content .sunset {
        margin: 20px auto;
    }
    .text-content {
        padding: 15px 15px;
    }
    .text-content p,
    .text-content ul,
    .text-content h2 {
        margin-left: 0;
    }
}