@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
}

.content-box {
    width: 100%;
    max-width: 1300px;
    background-color: white;
    border-radius: 15px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    min-height: calc(100vh - 100px);
}

.container {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    padding: 0;
    margin-top: 40px;
    gap: 70px;
}

.content {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #333;
}

.content p {
    margin-bottom: 10px;
}

.image {
    max-width: 400px;
    margin-top: 35px;
    position: relative;
}

.image img {
    width: 100%;
    height: auto;
    opacity: .9;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 10px; 
    padding-top: 10px;
    color: #888884;
    padding-bottom: 10px;
}

.about-text .highlight {
    font-size: 1.3rem;
    font-weight: bold;
    color: #f5896b;
    padding: 0;
    display: inline-block;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 1500px) {
    body {
        padding: 20px 0;
    }
}


@media (max-width: 1000px) {

    .content-box {
        width: 100%;
        max-width: 1300px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .container {
        gap: 15px; 
    }

    .image {
        max-width: 40%; 
        min-width: 30%;
    }

    .content {
        max-width: 100%;
        padding: 15px; 
    }

    .about-text {
        font-size: 1.1rem; 
    }

    h1 {
        font-size: 1.8rem; 
    }
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image {
        max-width: 75%; 
        margin-top: 25px;
        margin-bottom: 0;
    }

    .image img {
        width: 100%;
        height: auto;
        object-fit: cover; 
        object-position: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .content {
        padding: 1px;
    }

    .about-text {
        font-size: 1.1rem; 
    }
}
