* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #222;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    flex-wrap: wrap;
}

.text {
    max-width: 480px;
}

.text h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    background: #19b5fe;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.phone img {
    width: 260px;
    height: 500px;
    border-radius: 30px;
    background: #eaeaea;
}

.green-bg {
    background-image:
        linear-gradient(
            90deg,
            rgba(26, 169, 188, 0.85),
            rgba(22, 160, 133, 0.85)
        ),
        url("https://www.luxurylifestylemag.co.uk/wp-content/uploads/2021/12/bigstock-Beautiful-Modern-Living-Room-I-257148589.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 55px 10%;
    flex-wrap: wrap;
}

.box {
    max-width: 250px;
    margin: 15px;
    padding: 40px 15px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.box span {
    font-size: 13px;
    opacity: 0.85;
}

.mission {
    text-align: center;
    padding: 40px 10%;
}

.mission h2 {
    margin-bottom: 15px;
}

.mission p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #555;
}

.images {
    text-align: center;
    padding: 55px 10%;
}

.images p {
    margin-bottom: 35px;
    opacity: 0.9;
}

.img-row {
    text-align: center;
}

.img-box {
    display: inline-block;
    width: 300px;
    height: 150px;
    border: 2px dashed rgba(255,255,255,0.8);
    line-height: 150px;
    text-align: center;
    font-weight: bold;
    background: rgba(255,255,255,0.1);
    margin: 10px;
}

footer {
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .top {
        text-align: center;
    }

    .phone {
        margin-top: 40px;
    }

    .stats {
        flex-direction: column;
    }
}
