*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* Container Row */
.rowabout_masha-1 {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    width: 100%;
    flex-wrap: wrap;

    /* NEW → gives the section real height so the image can stretch */
    min-height: unset;
    padding: 60px 0px;
}

@media (max-width: 1050px) {
    .rowabout_masha-1 {
        flex-direction: column;
        align-items: center;
        min-height: auto; /* Reset for mobile */
    }
}

/* Text Column */
.columnaboutmash {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    
    box-sizing: border-box;
}

.columnaboutmash p {
    line-height: 1.4;
    
}

.description-1 {
    line-height: 1.4;
}

@media (max-width: 1050px) {
    .columnaboutmash {
        width: 100%;
        padding: 20px;
    }
}

/* Image Column */


.column71a4696on img {
    height: 400px;   /* ← change this to any size you want */
    width: 1050px;
   margin-bottom: 20px;
}

@media (max-width: 1050px) {
    .column71a4696on {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .column71a4696on img {
        height: 600px;
        width: 100%;
        object-fit: contain;
    }
}

/* Image Styling */
.class-71a4696one_one {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Heading */
.about-us {
    font-family: "Science Gothic";
    font-size: 96px;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
    padding-top: 0;
    text-align: center;
    
}



@media (max-width: 1050px) {
    .aboutmasha-1 {
        font-size: 48px;
    }
}

/* Description */
p.description-1 {
    color: white !important;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 20px;
    width: 100%;
}

@media (max-width: 1050px) {
    .description-1 {
        font-size: 26px;
    }
}

@media (max-width: 550px) {
    .description-1 {
        font-size: 24px;
    }
}


