*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#d9f2e4;
    display:flex;
    justify-content:center;
    padding:60px 20px;
}

.page{
    display:flex;
    flex-direction:column;
    gap:40px;
    width:1100px;
}

.container{
    background:#fdfdfd;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px;
    overflow:hidden;

    border-radius: 30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* Left */

.left{
    flex:1;
}

.circle{
    width:430px;
    height:430px;
    border:5px solid #1d6b42;
    border-radius:50%;
    overflow:hidden;
    background-image: url("flowers.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Right */

.right{
    flex:1;
    padding-left:70px;
}

.right h1{
    font-size:60px;
    color:#106b38;
    line-height:1.1;
    margin-bottom:30px;
}

.right p{
    color:#4d6b58;
    line-height:1.8;
    max-width:350px;
    margin-bottom:30px;
}

.right a{
    color:#146d3d;
    text-decoration:none;
    font-weight:bold;
}


.projects{

    background:white;
    border-radius: 30px;
    padding:40px;
    display:flex;
    gap:30px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.project{
    flex:1;
    background:#f3faf5;
    border-radius:25px;
    padding:25px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:flex-start;

    min-height:180px;
}
/* Responsive */

@media(max-width:900px){

.container{
    flex-direction:column;
    width:95%;
    height:auto;
    padding:40px 20px;
}

.projects{
    flex-direction:column;
}

.project{
    width:100%;
}

.circle{
    width:320px;
    height:320px;
}

.right{
    padding:40px 0 0;
    text-align:center;
}

.right h1{
    font-size:42px;
}

.right p{
    margin:auto;
    margin-bottom:25px;
}

}
