:root {
    --primary: #059669; /* Zümrüt Yeşili */
    --primary-hover: #047857;
    --accent: #f59e0b;  /* Turuncu */
    --dark: #1f2937;    /* Koyu Gri */
    --light: #f3f4f6;   /* Açık Gri Arkaplan */
    --white: #ffffff;
    --gray-text: #6b7280;
}

body { 
    font-family: 'Open Sans', sans-serif; 
    margin: 0; 
    background: var(--light); 
    color: var(--dark); 
    line-height: 1.6;
}

h1, h2, h3, .logo, .category-nav, .btn-slide { 
    font-family: 'Montserrat', sans-serif; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

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

/* --- HEADER & NAV --- */
.main-header { 
    background: var(--white); 
    padding: 15px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
    top: 0;
    z-index: 100;
}

.logo a { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo span { color: var(--primary); }

.search-box input { 
    padding: 8px 15px; 
    border: 2px solid #e5e7eb; 
    border-radius: 50px; 
    outline: none; 
    transition: 0.3s; 
    width: 220px; 
    font-family: inherit;
}
.search-box input:focus { border-color: var(--primary); width: 250px; }
.search-box button { 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 8px 20px; 
    border-radius: 50px; 
    margin-left: -45px; 
    cursor: pointer; 
    font-weight: 600;
}
.search-box button:hover { background: var(--primary-hover); }

/* Kategori Menüsü */
.category-nav { 
    background: var(--dark); 
    padding: 12px 5%; 
    overflow-x: auto; 
    white-space: nowrap; 
}
.category-nav a { 
    color: #9ca3af; 
    margin-right: 25px; 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.category-nav a:hover, .category-nav a.active { color: var(--accent); }

/* --- SLIDER (ÖNE ÇIKANLAR) --- */
.featured-slider { margin: 40px 0; }
.section-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; border-left: 5px solid var(--primary); padding-left: 15px; color: var(--dark); }

.slider-track { 
    display: flex; 
    gap: 25px; 
    overflow-x: auto; 
    padding: 10px 5px 30px 5px; 
    scrollbar-width: thin; 
}

.slide-item { 
    min-width: 600px; 
    height: 400px; 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
    flex-shrink: 0;
}
.slide-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.slide-item:hover img { transform: scale(1.05); }

.slide-caption { 
    position: absolute; 
    bottom: 0; left: 0; right: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); 
    color: white; 
    padding: 40px 30px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.slide-caption h3 { 
    font-size: 28px; 
    margin: 0 0 15px 0; 
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); 
}
.btn-slide { 
    background: var(--accent); 
    color: var(--dark); 
    padding: 8px 25px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
}
.btn-slide:hover { background: #fff; transform: translateY(-2px); }


/* --- ANA İÇERİK DÜZENİ (2 SÜTUN) --- */
.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Sol Sütun: Blog Listesi (%70) */
.main-column {
    flex: 7; /* Genişlik oranı 7 */
}

/* Sağ Sütun: Sidebar (%30) */
.sidebar {
    flex: 3; /* Genişlik oranı 3 */
    position: sticky;
    top: 100px; /* Kaydırınca üstte yapışır */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* --- YATAY BLOG KARTLARI --- */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card {
    display: flex;
    flex-direction: row; /* Yan yana */
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    height: 240px; /* Sabit yükseklik */
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.card-img {
    flex: 4; /* Genişlik %40 */
    position: relative;
    overflow: hidden;
}

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

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.card-body {
    flex: 6; /* Genişlik %60 */
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-body h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

.card-body p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3 satır sonra ... koy */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}
.read-more-btn:hover { color: var(--primary-hover); margin-left: 5px; }

/* --- SIDEBAR WIDGETLARI --- */
.widget {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.widget h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    color: var(--dark);
}

.widget-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #f3f4f6;
    padding-bottom: 12px;
}
.widget-list li:last-child { border: none; margin: 0; padding: 0; }

.widget-list a {
    display: flex;
    justify-content: space-between;
    color: var(--gray-text);
    font-weight: 600;
    font-size: 14px;
}
.widget-list a:hover { color: var(--primary); padding-left: 5px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a {
    background: #f3f4f6;
    color: var(--gray-text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.tag-cloud a:hover { background: var(--primary); color: white; }

.adsense-banner { 
    background: #e5e7eb; 
    text-align: center; 
    padding: 20px; 
    margin: 20px 0; 
    border-radius: 8px; 
    color: #999;
    font-size: 12px;
}
.adsense-box-small { 
    background: #f3f4f6; 
    height: 250px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #aaa; 
    border-radius: 8px;
}

/* --- SAYFALAMA (PAGINATION) --- */
.pagination { margin-top: 40px; text-align: center; }
.page-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-weight: 600;
    color: var(--dark);
}
.page-link.active, .page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- POST OKUMA DETAY SAYFASI --- */
.post-wrapper { 
    max-width: 850px; 
    margin: 0 auto; 
    background: var(--white); 
    padding: 60px; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}
.post-header { text-align: center; margin-bottom: 50px; }
.post-cat { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.post-header h1 { font-size: 42px; color: var(--dark); margin: 20px 0; line-height: 1.2; letter-spacing: -1px; }
.main-post-image { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 12px; margin-bottom: 50px; }

.post-content { font-family: 'Georgia', serif; font-size: 19px; line-height: 1.8; color: #333; }
.post-content h2 { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--primary); 
    margin-top: 50px; 
    font-size: 26px; 
    font-weight: 700;
}
.post-content p { margin-bottom: 25px; }
.post-content ul { 
    background: #f0fdf4; 
    padding: 30px 40px; 
    border-radius: 12px; 
    border-left: 5px solid var(--primary); 
    margin: 30px 0; 
}
.post-content li { margin-bottom: 12px; list-style: disc; }
.post-content strong { color: var(--dark); }

/* --- FOOTER --- */
.main-footer { 
    background: var(--dark); 
    color: #9ca3af; 
    padding: 60px 5% 30px; 
    margin-top: 80px; 
    font-size: 14px;
}
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }
.footer-section h3 { color: white; margin-bottom: 20px; font-size: 16px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; text-align: center; }

/* --- RESPONSIVE (TELEFON UYUMLULUĞU) --- */
@media (max-width: 900px) {
    .content-wrapper { flex-direction: column; }
    .main-column { width: 100%; }
    .sidebar { width: 100%; position: static; }
    .slide-item { min-width: 90%; height: 300px; }
    .slide-caption h3 { font-size: 20px; }
    .post-wrapper { padding: 30px; }
    .post-header h1 { font-size: 28px; }
}

@media (max-width: 600px) {
    .blog-card { flex-direction: column; height: auto; }
    .card-img { height: 200px; }
    .search-box input { width: 150px; }
}
/* --- YAZI İÇİ GÖRSELLER --- */
.inline-image {
    margin: 30px 0;
    text-align: center;
}

.inline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.inline-image img:hover {
    transform: scale(1.02);
}

.inline-image figcaption {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
    text-transform: capitalize; /* Baş harfleri büyütür */
}
/* --- REHBER SAYFASI GÖRSELLERİ --- */
.guide-content img {
    width: 100%;             /* Resmi kapsayıcıya sığdır */
    height: auto;            /* Orantıyı bozma */
    border-radius: 12px;     /* Köşeleri yumuşat */
    margin: 25px 0;          /* Üstten ve alttan boşluk bırak */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Hafif gölge ver */
}

.guide-content h3 {
    margin-top: 40px;        /* Başlıkların arasını aç */
    color: var(--primary);   /* Senin yeşil rengini kullan */
    font-size: 24px;
}

.guide-content hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}
/* --- BEĞENİ VE YORUMLAR --- */
.like-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.like-button {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    color: var(--dark);
    font-weight: 700;
    transition: 0.3s;
    margin-right: 15px;
}

.like-button:hover { border-color: #ef4444; color: #ef4444; }
.like-button.liked { background: #ef4444; color: white; border-color: #ef4444; cursor: default; }

.separator { border: 0; border-top: 1px solid #e5e7eb; margin: 40px 0; }

/* Yorumlar */
.comments-wrapper { margin-top: 40px; }
.comment-item { display: flex; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #f3f4f6; padding-bottom: 20px; }
.comment-avatar { 
    width: 50px; height: 50px; background: var(--primary); color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-weight: bold; font-size: 20px; flex-shrink: 0;
}
.comment-body h4 { margin: 0; }
.comment-date { font-size: 12px; color: #9ca3af; display: block; margin-bottom: 5px; }
.no-comments { color: #9ca3af; font-style: italic; text-align: center; }

/* Form */
.comment-form { background: #f9fafb; padding: 25px; border-radius: 12px; margin-top: 30px; }
.comment-form input, .comment-form textarea {
    width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #e5e7eb; 
    border-radius: 8px; font-family: inherit; box-sizing: border-box;
}
.btn-submit {
    background: var(--dark); color: white; border: none; padding: 10px 30px; 
    border-radius: 6px; cursor: pointer; font-weight: bold;
}
.btn-submit:hover { background: var(--primary); }
/* --- ANA SAYFA KART BEĞENİ GÖSTERGESİ --- */

/* Kartın alt kısmı: Buton solda, Kalp sağda dursun */
.card-footer {
    display: flex;
    justify-content: space-between; /* İki uca yasla */
    align-items: center; /* Dikeyde ortala */
    margin-top: auto; /* Kart uzarsa en alta it */
    padding-top: 15px; /* Üstteki metinden ayır */
}

/* Kalp ve Sayı Kutusu */
.card-likes {
    display: flex;
    align-items: center;
    gap: 5px; /* Kalp ile sayı arası boşluk */
    background: #fff1f2; /* Çok açık kırmızı arka plan */
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #be123c; /* Koyu kırmızı yazı */
    font-weight: 700;
    cursor: default; /* Tıklanmaz imleci */
    border: 1px solid #fecdd3;
}

.heart-icon {
    font-size: 14px;
}
/* --- BENZER YAZILAR (RELATED POSTS) --- */
.related-wrapper {
    margin: 40px 0;
}

.related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan Yana */
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.related-img {
    height: 150px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.related-card:hover .related-img img {
    transform: scale(1.1);
}

.related-info {
    padding: 15px;
}

.related-info h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    /* 2 satırdan fazlasını kes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-info .read-more {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Mobilde Tek Sıra */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}
/* --- SOSYAL MEDYA PAYLAŞIM BUTONLARI --- */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px; /* Butonlar arası boşluk */
    margin-top: 15px; /* Tarih ile arası */
    margin-bottom: 5px;
    flex-wrap: wrap; /* Mobilde sığmazsa alta geçsin */
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
    margin-right: 5px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.share-btn svg {
    display: block; /* İkon hizalaması için */
}

.share-btn:hover {
    transform: translateY(-2px); /* Üzerine gelince hafif zıplasın */
    opacity: 0.9;
    color: white;
}

/* Marka Renkleri */
.share-btn.whatsapp {
    background-color: #25D366;
}

.share-btn.twitter {
    background-color: #000000; /* X logosu siyah */
}

.share-btn.facebook {
    background-color: #1877F2;
}
/* --- RASTGELE ROTA BUTONU --- */
.section-header {
    display: flex;
    justify-content: space-between; /* İki uca yasla */
    align-items: center; /* Dikey ortala */
    margin-bottom: 20px;
    padding-right: 10px; /* Mobilde taşmasın */
}

.btn-random {
    background: linear-gradient(45deg, #8b5cf6, #ec4899); /* Mor-Pembe Gradyan */
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4); /* Parlama Efekti */
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-random:hover {
    transform: scale(1.05) translateY(-2px); /* Üzerine gelince büyüsün */
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
    color: white;
}

/* Mobilde Butonun Konumu */
@media (max-width: 600px) {
    .section-header {
        flex-direction: row; /* Yan yana kalsın */
        align-items: center;
    }
    .btn-random {
        font-size: 12px; /* Mobilde biraz küçülsün */
        padding: 6px 15px;
    }
    .section-title {
        font-size: 20px; /* Mobilde başlık biraz küçülsün */
    }
}

/* --- EN ÇOK OKUNANLAR WIDGET --- */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.2s;
}

.popular-item:hover {
    transform: translateX(5px);
}

.popular-number {
    font-size: 24px;
    font-weight: 800;
    color: #e5e7eb; /* Açık gri numara */
    line-height: 1;
    min-width: 20px;
    text-align: center;
}

/* İlk 3 numara renkli olsun */
.popular-item:nth-child(1) .popular-number { color: #f59e0b; } /* Altın */
.popular-item:nth-child(2) .popular-number { color: #9ca3af; } /* Gümüş */
.popular-item:nth-child(3) .popular-number { color: #b45309; } /* Bronz */

.popular-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-info .view-count {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 3px;
    display: block;
}

/* --- HEADER VE NAV SABİTLEME (GÜNCEL) --- */
.sticky-wrapper {
    position: sticky; /* Yapışkan özellik */
    top: 0;           /* En tepeye yapış */
    z-index: 1000;    /* Diğer her şeyin üstünde dur */
    width: 100%;
}

/* Eski sticky özelliklerini iptal et (Çakışmayı önlemek için) */
.main-header {
    position: relative !important; 
    top: auto !important;
    /* Eğer varsa eski sticky kodlarını buradan silmek daha iyidir */
}
/* --- YENİ İLETİŞİM SAYFASI TASARIMI --- */
.contact-centered-wrapper {
    max-width: 800px;
    margin: 60px auto; /* Üstten alttan boşluk, yatayda ortala */
    text-align: center;
}

.contact-intro h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-intro p {
    color: #6b7280;
    margin-bottom: 40px;
}

/* Kartların Kapsayıcısı */
.contact-boxes {
    display: flex;
    justify-content: center; /* Kartları ortala */
    gap: 30px; /* Aralarındaki boşluk */
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
}

/* Genel Kart Stili */
.c-box {
    background: white;
    width: 220px; /* Kare olması için sabit genişlik */
    height: 220px; /* Kare olması için sabit yükseklik */
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.c-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.c-box h3 {
    margin: 15px 0 5px 0;
    font-size: 18px;
    color: var(--dark);
}

.c-box span {
    font-size: 14px;
    color: #9ca3af;
}

/* İkon Daireleri */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* RENKLENDİRME */

/* E-Posta: Kırmızı/Turuncu */
.mail-icon {
    background: #fff1f2; /* Çok açık kırmızı zemin */
    color: #e11d48;      /* Koyu kırmızı ikon */
}
.mail-box:hover .mail-icon {
    background: #e11d48;
    color: white;
    transition: 0.3s;
}

/* Instagram: Gradyan */
.insta-icon {
    background: #fdf2f8; /* Çok açık pembe zemin */
    color: #db2777;      /* Pembe ikon */
}
.insta-box:hover .insta-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram Gradyanı */
    color: white;
    transition: 0.3s;
}
/* --- HAKKIMDA SAYFASI KUTULARI --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Yan yana, mobilde alt alta */
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: white;
}

.f-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin: 10px 0;
    font-size: 20px;
    color: var(--dark);
}

.feature-box p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}
