* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1e1e1e, #333);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.site-header h1 {
    font-size: 36px;
}

.site-header p {
    margin-top: 10px;
    opacity: 0.9;
}

/* App Section */
.app-section {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.app-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.app-desc {
    color: #555;
}

/* Posts */
.posts {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 20px auto 60px;
    padding: 0 20px;
}

.post-card {
    background: #fff;
    width: 300px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card h3 {
    margin-bottom: 10px;
}

.post-card p {
    color: #666;
    font-size: 14px;
}

.post-card a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

/* Policy Pages */
header {
    background: #1e1e1e;
    color: #fff;
    padding: 25px;
    text-align: center;
}

main {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

main h2 {
    margin-top: 25px;
    color: #222;
}

main ul {
    margin-left: 20px;
}

/* Footer */
.site-footer, footer {
    background: #1e1e1e;
    color: #ccc;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 28px;
    }
}
