/* about.css */


body{
    margin:0;
    padding:0;
    height:100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    
}


.container {
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 25vh;
}

.section {
    display: flex;
    flex-direction: row;
    font-family: sans-serif;
    width: 90%; 
    max-width: 1200px;
    margin: 0 auto; 
}

  
.paragraph {
    color: #555;
    display: flex;
    flex-direction: column;
}
  
.content {
    padding: 20px;
    max-width: 80vw;
}
  
.title {
    font-size: 34px;
    color: #222;
    line-height: 24px;
    font-family: 'Montserrat', sans-serif;
}

.image {
    width: 350px; 
}

.align-right {
    text-align: right;
}

@media only screen and (max-width: 1000px) {
    .container {
        height: auto; 
    }

    .section {
        flex-direction: column;
        align-items: center;
    }

    .content {
        max-width: 90%; 
    }

    .title {
        font-size: 24px;
        text-align: center; 
    }

    .image {
        width: 250px; 
        margin-bottom: 15px;
    }

    .align-right {
        text-align: center; 
    }
	
}


@media only screen and (max-width: 600px) {
    .container {
        height: auto;
    }

    .section {
        flex-direction: column; 
        align-items: center;
    }

    .content {
        max-width: 90vw; 
    }

    .title {
        font-size: 28px; 
        text-align: center; 
    }

    .image {
        width: 100%; 
        margin-bottom: 20px;
    }

    .align-right {
        text-align: center; 
    }
}

@media only screen and (max-width: 480px) {
    .container {
        height: auto; 
    }

    .section {
        flex-direction: column;
        align-items: center;
    }

    .content {
        max-width: 90%; 
    }

    .title {
        font-size: 24px;
        text-align: center; 
    }

    .image {
        width: 250px; 
        margin-bottom: 15px;
    }

    .align-right {
        text-align: center; 
    }
	
}

