*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#07111f;
    color:#fff;
    line-height:1.8;
}

.hero{
    position:relative;
    min-height:70vh;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1600&q=80') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
}

.hero-content{
    max-width:950px;
    z-index:2;
}

.date-badge{
    display:inline-block;
    padding:10px 18px;
    background:#16a34a;
    border-radius:40px;
    font-weight:bold;
    margin-bottom:20px;
}

.hero h1{
    font-size:48px;
    line-height:1.3;
}

.content-area{
    max-width:1100px;
    margin:auto;
    padding:70px 25px;
}

.article-section{
    padding:30px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.article-section h2{
    font-size:32px;
    margin-bottom:16px;
    color:#38bdf8;
}

.article-section p{
    font-size:19px;
    color:#dbeafe;
}

strong{
    color:#22c55e;
}

.contact-strip{
    margin-top:50px;
    padding:35px 0;
    border-top:2px solid #22c55e;
    border-bottom:2px solid #22c55e;
}

.contact-strip p{
    margin:12px 0;
    font-size:18px;
}

a{
    color:#facc15;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:35px;
}

.tags span{
    background:#1d4ed8;
    padding:10px 15px;
    border-radius:30px;
    font-size:14px;
}

@media(max-width:768px){

.hero h1{
    font-size:30px;
}

.article-section h2{
    font-size:24px;
}

.article-section p,
.contact-strip p{
    font-size:16px;
}

}