body{
font-family:Arial;
margin:0;
background:#f7f7f7;
color:#222;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

.site-header{
background:white;
border-bottom:1px solid #eee;
}

.header-flex{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-size:22px;
font-weight:bold;
text-decoration:none;
color:#000;
}

.main-menu a{
margin-left:20px;
text-decoration:none;
color:#333;
}

.post-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:30px;
}

.post-card{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
transition:.2s;
}

.post-card:hover{
transform:translateY(-5px);
}

.post-image{
width:100%;
height:180px;
object-fit:cover;
}

.post-content{
padding:15px;
}

.category{
font-size:12px;
color:#0073e6;
}

.post-content h2{
font-size:18px;
margin:8px 0;
}

.post-content p{
font-size:14px;
color:#555;
}

.site-footer{
background:#111;
color:white;
margin-top:60px;
padding:40px 0;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.site-footer a{
color:#ccc;
text-decoration:none;
}

.copyright{
text-align:center;
margin-top:30px;
font-size:13px;
color:#aaa;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
padding:15px;
}

.main-menu a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:500;
}

.dropdown{
position:relative;
display:inline-block;
margin-left:20px;
}

.dropdown-menu{
display:none;
position:absolute;
background:white;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
padding:10px;
}

.dropdown:hover .dropdown-menu{
display:block;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

.content-area{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

.sidebar{
display:flex;
flex-direction:column;
gap:20px;
}

.sidebar-box{
background:white;
padding:20px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-box h3{
margin-top:0;
}

.related-posts{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
margin-top:20px;
}

.related-card{
background:#fff;
border-radius:6px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.related-card img{
width:100%;
height:120px;
object-fit:cover;
}

.toc-box{
background:#f8f9fa;
border:1px solid #ddd;
padding:15px;
border-radius:6px;
margin-bottom:25px;
}

.toc-box strong{
display:block;
margin-bottom:10px;
}

.toc-box ul{
padding-left:18px;
margin:0;
}

.toc-box li{
margin:6px 0;
}

.toc-box a{
text-decoration:none;
color:#0073e6;
font-size:14px;
}

.toc-box a:hover{
text-decoration:underline;
}

.legal-page{
max-width:900px;
margin:auto;
padding:40px 20px;
line-height:1.8;
}

.legal-page h1{
margin-bottom:20px;
font-size:36px;
}

.legal-page h2{
margin-top:30px;
color:#1a73e8;
}