*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f8fafc;
    color:#1e293b;
}


.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid #e5e7eb;
}

.nav-container{
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-box{
    width:55px;
    height:55px;
    border-radius:15px;
    background:#FFFFFF;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
}

.nav-buttons{
    display:flex;
    gap:15px;
}

.btn{
    text-decoration:none;
    padding:12px 22px;
    border-radius:12px;
}

.btn-primary{
    background:#0f172a;
    color:#fff;
}

.btn-outline{
    border:1px solid #cbd5e1;
    color:#0f172a;
}

.btn-light{
    background:#fff;
    color:#0f172a;
}

.hero{
    padding:90px 0;
    background-color: #021c44;
}

.hero-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:center;
    color: #000000;
}

.hero-badges span{
    background:#e2e8f0;
    padding:8px 15px;
    border-radius:25px;
    margin-right:10px;
    color: #000000;
}

.hero h1{
    font-size:58px;
    margin:25px 0;
    line-height:1.2;
}

.hero p{
    color:#64748b;
    font-size:20px;
    line-height:1.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
}

.hero-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.community-icon{
    width:90px;
    height:90px;
    background:#dcfce7;
    color:#16a34a;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.stats{
    padding:60px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    text-align:center;
    border: 1px;
    border-style: solid;
    border-color: #D3D3D3;
}

.stat-card h2{
    font-size:48px;
    color:#021c44;
}

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.amenities-grid,
.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.amenity-card,
.feature-card{
    background:#fff;
    padding:35px;
    border-radius:25px;
    text-align:center;
    border-color: #E3E3E3;
    border-style: solid;
    border-width: 1px;
}

.amenity-card i,
.feature-card i{
    font-size:40px;
    color:#16a34a;
    margin-bottom:20px;
}

.footer{
    background:#0f172a;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer ul{
    list-style:none;
}

.footer a{
    color:#cbd5e1;
    text-decoration:none;
}

.copyright{
    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
}

@media(max-width:992px){

    .hero-grid,
    .stats-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:38px;
    }
}

.announcements-section{
padding:70px 20px;
background:#f5f7fa;
}

.announcements-section h2{
text-align:center;
margin-bottom:40px;
}

.announcement-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
}

.announcement-card{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.announcement-type{
display:inline-block;
background:#0B3B82;
color:#fff;
padding:6px 14px;
border-radius:20px;
margin-bottom:15px;
}

.whitefont{
    color: #FFFFFF !important;
}