body {
    background-color: lightblue;
}
h1 {
    color: red;
    text-align: center;
}
button {
    background-color: #2563eb;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius:8px;
    font-size: 18px;
    font-weight: bold;
}
button:hover{
    background:#1d4ed8;
}
h2{
    color: blue;
}
ul{
    font-size: 18px;
}
nav{
    background-color: #333;
    padding: 15px;
}
nav a{
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
}
nav a:hover{
    color: yellow;
}
.card{
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px gray;
}
.card h3{
    color: darkblue;
}
.card button{
    background-color: blue;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}
.card{
    transition:0.3s;
}
.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}
.search-box{
    text-align: center;
    margin: 20px;
}
.search-box input{
    padding: 10px;
    width: 300px;
    font-size: 16px;
}
.search-box button{
    padding: 10px 15px;
    background-color: orange;
    color: white;
    border: none;
}
footer{
    background:#222;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
#about{
    background-color: white;
    padding: 30px;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px raba(0,0,0,0.15);
}
#about h2{
    color: #1e73be;
    font-size: 32px;
    margin-bottom: 15px;
}
#about p{
font-size: 18px;
line-height: 1.8;
color: #333;
}
#important-links ul{
    list-style: none;
    padding: 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}
#important-links li{
    margin: 10px 0;
}
@media (max-width:768px){
    #important-links ul{
        grid-template-columns: 1fr;
    }
}
#important-links a{
    color: #1e73be;
    text-decoration: none;
    font-size: 18px;
    font-weight:600;
}
#important-links a:hover{
    color:#ff6600;
    text-decoration:underline;
}
#important-links{
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px lightgray;
}
#Contact{
    background-color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px lightgray;
}
#contact input,
#contact textarea{
    width: 90%;
    padding: 10px;
    margin: 10px 0;
}
#contact button{
    background-color: green;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
}
.hero{
    text-align:center;
    padding:80px 20px;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:white;
    border-radius:15px;
    margin:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
.hero h1{
    font-size:36px;
    margin-bottom:15px;
}
.hero p{
    font-size:20px;
    margin-bottom:25px;
}
.hero-btn{
    display:inline-block;
    background:#fbbf24;
    color:#222;
    padding:12px 25px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}
.hero {
    background: linear-gradient(135deg, #0052cc, #00aaff);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 20px;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}
.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}
.hero-btn {
    background: #ffcc00;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.hero-btn:hover {
    background: #f59e0b;
}
nav{
    background:#222;
    padding:10px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}
nav a{
    color:white;
    text-decoration:none;
    padding:8px 12px;
}
@media (max-width:768px){
nav{
    flex-direction:column;
    text-align:center;
}
nav a{
    display:block;
}
}
.whatsapp-btn{
    position:fixed;
    bottom:70px;
    right:10px;
    background:#25D366;
    color:white;
    padding:10px 15px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    font-size: 14px;
    z-index:999;
}
.search-box{
    text-align:center;
    margin:20px;
}
.search-box input{
    width:70%;
    padding:10px;
}
.search-box button{
    padding:10px 15px;
    background:#0052cc;
    color:white;
    border:none;
}
.ticker{
    background:red;
    color:white;
    padding:10px;
    text-align:center;
    font-weight:bold;
}
.hero{
    background:
    linear-gradient(rgba(0,0,0,0.5),
    rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');

    background-size:cover;
    background-position:center;
}
.search-box input{
    border-radius:25px;
    border:none;
    padding:12px 20px;
}
.search-box button{
    border-radius:25px;
    padding:12px 20px;
}
.cards-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}
.card{
    transition:0.3s ease;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.card{
    padding:20px;
    min-height:auto;
}
nav{
    position:sticky;
    top:0;
    z-index:1000;
}
.stats{
    display:flex;
    justify-content:space-around;
    background:white;
    padding:20px;
    margin:20px;
    border-radius:10px;
}
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#222;
    padding:15px 20px;
    position:relative;
}
.logo{
    color:white;
    font-size:22px;
    font-weight:bold;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:20px;
}
.nav-links a{
    color:white;
    text-decoration:none;
}
.menu-toggle{
    display:none;
    color:white;
    font-size:30px;
    cursor:pointer;
}
/* Mobile */
@media screen and (max-width:768px){
    .menu-toggle{
        display:block;
    }
    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:#222;
        padding:10px 0;
    }
    .nav-links.active{
        display:flex;
    }
    .nav-links li{
        text-align:center;
        padding:10px;
    }
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
background:#222;
padding:15px;
position:relative;
}
.logo{
color:white;
font-size:22px;
font-weight:bold;
}
.nav-links{
display:flex;
gap:20px;
list-style:none;
}
.nav-links a{
color:white;
text-decoration:none;
}
.menu-toggle{
display:none;
font-size:30px;
color:white;
cursor:pointer;
}
@media(max-width:768px){
.menu-toggle{
display:block;
}
.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:60px;
left:0;
width:100%;
background:#222;
padding:10px 0;
}
.nav-links.active{
display:flex;
}
}
.feature-image{
    width:100%;
    height:350px;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:30px;
    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216');
    background-size:cover;
    background-position:center;
}
.nsp-banner{
    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('images/nsp-banner.jpg');
    background-size: cover;
    background-position: center;
}
.feature-overlay{
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}
.feature-overlay h1{
    font-size:42px;
    margin-bottom:15px;
}
.feature-overlay p{
    font-size:18px;
    max-width:700px;
}
.post-content a{
    color:#1e73be;
    font-weight:600;
    text-decoration:none;
}
.post-content a:hover{
    color:#ff6600;
    text-decoration:underline;
}
.ticker a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}
.ticker a:hover{
    text-decoration:underline;
}
.popular-posts{
    background:#fff;
    padding:20px;
    margin:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}
.popular-posts h2{
    margin-bottom:15px;
    color:#333;
}
.popular-posts ul{
    list-style:none;
    padding:0;
}
.popular-posts li{
    margin:10px 0;
}
.popular-posts a{
    text-decoration:none;
    color:#0066cc;
    font-weight:bold;
}
.popular-posts a:hover{
    color:#ff6600;
}
article{
    max-width:900px;
    margin:auto;
    padding:20px;
}
<style>
article{
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    line-height: 1.8;
}
article p{
    font-size: 18px;
}
article h2{
    color:#0d6efd;
    font-size:32px;
    margin-top:35px;
}
table{
    width:70%;
    margin:20px auto;
    border-collapse:collapse;
}
table th,
table td{
    padding:10px 15px;
    border:1px solid #ddd;
    text-align:center;
}
.related-posts{
    background:#f8f9fa;
    padding:20px;
    border-radius:10px;
    margin-top:30px;
}
.related-posts{
    background:#f8f9fa;
    padding:20px;
    margin:30px auto;
    border-radius:10px;
    max-width:1000px;
}
.related-posts h3{
    color:#0d6efd;
    margin-bottom:10px;
}
.related-posts ul{
    padding-left:20px;
}
.related-posts li{
    margin-bottom:8px;
}
.post-banner {
    margin: 20px 0;
    text-align: center;
}
.post-banner img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}