/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.logo span {
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 40px;
    margin: 20px 0 10px 0;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Kartları */
.main-content {
    padding: 60px 20px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0f172a;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-body {
    padding: 24px;
}

.category {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-body h3 {
    margin: 10px 0;
    font-size: 20px;
}

.card-body h3 a {
    color: #0f172a;
    text-decoration: none;
}

.card-body h3 a:hover {
    color: #2563eb;
}

.card-body p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

/* SSS Alanı */
.faq-section {
    margin-top: 60px;
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.faq-item {
    margin-top: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.faq-item h4 {
    color: #1e293b;
    font-size: 16px;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

footer strong {
    color: white;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .nav-links { display: none; }
}