#about-house {
    padding: 40px 20px;
    background-color: white;
    padding: 60px;
}

.about-house-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.column {
    flex: 1 1 300px;
    max-width: 100%;
}

.first-column {
    position: relative;
}

.first-column .image-container {
    position: relative;
    overflow: hidden;
    height: 90vh;
}

.first-column .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 100px;
    padding-top: 2vh;
    overflow: hidden;
}

.text-overlay p {
    text-align: left;
    padding-bottom: 30px;
}

button#pdf-button {
    font-family: 'Sansita', sans-serif;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 70%;
}

button#pdf-button:hover {
    border-color: #FF7720;
    color: #FF7720;
}

.second-column {
    position: relative;
}

.second-column .orange-container {
    background-color: #FF7720;
    color: white;
    padding: 2vh; 
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: auto; 
}

.second-column .orange-container h1 {
    margin-bottom: 2vh; 
}

.second-column .orange-container p {
    margin-bottom: 3vh; 
    text-align: left;
}

.second-column .orange-container iframe {
    width: 100%; 
    height: 30vh; 
    border: none; 
}

.third-column {
    position: relative;
}

.third-column .column-three-container {
    background-color: white;
    color: black;
    padding: 2vh; 
    display: flex;
    flex-direction: column; 
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.column-three-container p {
    text-align: left;
}

.column-three-container a {
    display: inline-flex; 
    align-items: center; 
    text-decoration: none;
    margin-right: 10px;
    margin-top: 10px;
}

.column-three-container a i {
    font-size: 3vh;
    color: black;
}

.column-three-container a:hover i {
    color: #FF7720;
}

.column-three-container a:visited {
    color: black;
    text-decoration: none;
}

@media (max-width: 1460px) {

    .text-overlay {
        padding: 38px;
        font-size: 1.7vh;
    }

    .text-overlay p {
        padding-bottom: 5px;
    }

    button#pdf-button {
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

@media (max-width: 1023px) {

    .text-overlay {
        padding: 38px;
        font-size: 1.2em;
    }

    .text-overlay p {
        padding-bottom: 5px;
    }

    button#pdf-button {
        font-size: 0.85rem;
        margin-top: 20px;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {


    .about-house-content {
        flex-direction: column;
    }

    .text-overlay {
        padding: 10px;
        font-size: 0.9em;
    }

}

@media (max-width: 600px) {

    #about-house {
        width: 100%;
        padding: 40px 20px;
    }

    .about-house-content {
        gap: 20px;
    }

    .text-overlay {
        padding: 15px;
        padding-bottom: 0px;
    }

    .text-overlay p {
        padding-bottom: 5px;
    }

    button#pdf-button {
        font-size: 1.5vh;
    }
}
