*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fa;
}

/* HEADER */

header{
    background:#111827;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 5%;

    flex-wrap:wrap;
}

.logo{
    font-size:22px;

    font-weight:bold;

    max-width:700px;
}

nav a{
    color:white;

    text-decoration:none;

    margin-left:25px;

    font-size:18px;

    transition:0.3s;
}

nav a:hover{
    color:#38bdf8;
}

/* HERO */

.hero{
    height:90vh;

    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;
}

.hero-text{
    background:rgba(0,0,0,0.6);

    padding:40px;

    border-radius:15px;
}

.hero-text h1{
    font-size:60px;

    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;

    margin-bottom:25px;
}

/* BUTTON */

.btn{
    display:inline-block;

    padding:14px 30px;

    background:#0284c7;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:0.3s;
}

.btn:hover{
    background:#0369a1;
}

/* PROPERTIES */

.properties{
    padding:80px 8%;
}

/* PROPERTY ROW */

.property-row{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:50px;

    padding:40px;

    margin-bottom:50px;

    background:white;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* IMAGES */

.property-images{
    width:60%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;
}

.property-images img{
    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:15px;

    transition:0.3s;
}

.property-images img:first-child{
    grid-column:1 / 3;

    height:320px;
}

.property-images img:hover{
    transform:scale(1.02);
}

/* DETAILS */

.property-details{
    width:40%;
}

.property-details h2{
    font-size:40px;

    margin-bottom:20px;

    color:#111827;
}

.property-details p{
    font-size:18px;

    margin-bottom:12px;

    color:#555;
}

/* PRICE */

.price{
    color:#0284c7;

    font-size:28px;

    font-weight:bold;

    margin:20px 0;
}

/* ABOUT */

.about{
    padding:80px 8%;

    background:white;

    text-align:center;
}

.about h2{
    font-size:42px;

    margin-bottom:20px;

    color:#111827;
}

.about p{
    max-width:900px;

    margin:auto;

    line-height:1.8;

    color:#555;

    font-size:18px;
}

/* CONTACT */

.contact{
    padding:80px 8%;

    background:#111827;

    color:white;

    text-align:center;
}

.contact h2{
    font-size:42px;

    margin-bottom:20px;
}

.contact p{
    margin:12px 0;

    font-size:18px;
}

/* FOOTER */

footer{
    background:black;

    color:white;

    text-align:center;

    padding:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .property-row{
        flex-direction:column;
    }

    .property-images{
        width:100%;
    }

    .property-details{
        width:100%;

        text-align:center;
    }
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f7fa;
}

/* HEADER */

header{
    background:#111827;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 5%;

    flex-wrap:wrap;
}

.logo{
    font-size:22px;

    font-weight:bold;

    max-width:700px;
}

nav a{
    color:white;

    text-decoration:none;

    margin-left:25px;

    font-size:18px;

    transition:0.3s;
}

nav a:hover{
    color:#38bdf8;
}

/* HERO */

.hero{
    height:90vh;

    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;
}

.hero-text{
    background:rgba(0,0,0,0.6);

    padding:40px;

    border-radius:15px;
}

.hero-text h1{
    font-size:60px;

    margin-bottom:20px;
}

.hero-text p{
    font-size:20px;

    margin-bottom:25px;
}

/* BUTTON */

.btn{
    display:inline-block;

    padding:14px 30px;

    background:#0284c7;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:0.3s;
}

.btn:hover{
    background:#0369a1;
}

/* PROPERTIES */

.properties{
    padding:80px 8%;
}

/* PROPERTY ROW */

.property-row{
    display:flex;

    align-items:center;

    justify-content:center;

    gap:50px;

    padding:40px;

    margin-bottom:50px;

    background:white;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* IMAGES */

.property-images{
    width:60%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;
}

.property-images img{
    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:15px;

    transition:0.3s;
}

.property-images img:first-child{
    grid-column:1 / 3;

    height:320px;
}

.property-images img:hover{
    transform:scale(1.02);
}

/* DETAILS */

.property-details{
    width:40%;
}

.property-details h2{
    font-size:40px;

    margin-bottom:20px;

    color:#111827;
}

.property-details p{
    font-size:18px;

    margin-bottom:12px;

    color:#555;
}

/* PRICE */

.price{
    color:#0284c7;

    font-size:28px;

    font-weight:bold;

    margin:20px 0;
}

/* ABOUT SECTION */

.about{
    padding:100px 8%;

    background:#f8fafc;

    display:flex;

    justify-content:center;

    align-items:center;
}

.about-box{

    max-width:900px;

    background:white;

    padding:60px;

    border-radius:25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.about-box h2{

    font-size:55px;

    color:#0f172a;

    margin-bottom:20px;
}

.about-box h3{

    font-size:34px;

    color:#0284c7;

    margin-bottom:30px;

    line-height:1.4;
}

.about-box p{

    font-size:20px;

    color:#555;

    line-height:1.9;

    margin-bottom:25px;
}

/* ADDRESS BOX */

.address-box{

    margin-top:40px;

    background:#eff6ff;

    padding:30px;

    border-radius:18px;
}

.address-box h4{

    font-size:28px;

    color:#111827;

    margin-bottom:15px;
}

.address-box p{

    font-size:20px;

    color:#444;

    margin:0;
}

/* CONTACT */

.contact{
    padding:80px 8%;

    background:#111827;

    color:white;

    text-align:center;
}

.contact h2{
    font-size:42px;

    margin-bottom:20px;
}

.contact p{
    margin:12px 0;

    font-size:18px;
}

/* FOOTER */

footer{
    background:black;

    color:white;

    text-align:center;

    padding:20px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .property-row{
        flex-direction:column;
    }

    .property-images{
        width:100%;
    }

    .property-details{
        width:100%;

        text-align:center;
    }

    .hero-text h1{
        font-size:40px;
    }

    nav{
        margin-top:15px;
    }

    .about-box{

        padding:35px 25px;
    }

    .about-box h2{

        font-size:42px;
    }

    .about-box h3{

        font-size:26px;
    }

    .about-box p{

        font-size:18px;
    }

    .address-box h4{

        font-size:24px;
    }
}
    .hero-text h1{
        font-size:40px;
    }

    nav{
        margin-top:15px;
    }
}