@font-face {
    font-family: Montagu Slab;
    src: url(fonts/MontaguSlab-VariableFont_opsz\,wght.ttf);
}
@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins/Poppins-Regular.ttf);
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #fff;
    color: #222;
}

.about-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.about-text {
    flex: 1;
    padding: 50px 40px 50px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.about-text h1 {
    font-family: Montagu Slab;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 1px;
    cursor: pointer;
}

.about-text p {
    font-family: Poppins;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 90%;
    cursor: pointer;
}

.about-signoff {
    margin-top: 32px;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    color: #222;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background:transparent;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: block;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
    .about-text {
        padding: 40px 5vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-text h1 {
        font-size: 3rem;
        text-align: center;
        width: 100%;
    }
    .about-text p {
        text-align: justify;
        width: 100%;
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .about-text {
        padding: 32px 4vw 16px 4vw;
    }
   
    .about-text h1 {
        font-size: 2.5rem;
    }
    .about-text p {
        font-size: 1rem;
    }
}
