 .lane-section {
        background: #f0f4f9; 
        padding: 80px 0;
        font-family: 'Outfit', sans-serif;
    }

    /* 4'lü yan yana düzeni koruyarak alanı genişlettik */
.lane-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1100px) {
    .lane-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lane-grid {
        grid-template-columns: 1fr;
    }
}
    /* Kart boyutları hafif büyütüldü */
    .soft-card {
        position: relative;
        background: #ffffff;
        border-radius: 50px; /* Daha oval ve büyük durması için */
        padding: 50px 30px; /* İç boşluğu artırdık */
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,0.04);
        border: 1px solid rgba(255,255,255,0.8);
    }

    .icon-plate {
        width: 85px; /* İkon kutusu büyüdü */
        height: 85px;
        background: #fff;
        border-radius: 25px;
        margin: -15px auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        color: #ff6a00; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        transform: rotate(-5deg);
    }

    .status-badge {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 11px;
        font-weight: 700;
        color: #ffa500;
        display: flex;
        align-items: center;
        gap: 5px;
        background: #fff9f0;
        padding: 5px 12px;
        border-radius: 20px;
    }

    /* Kart Başlığı */
    .card-title {
        font-size: 22px; /* Başlık bir tık büyüdü */
        font-weight: 800;
        color: #2d2d2d;
        margin-bottom: 12px;
    }

    .card-desc {
        font-size: 14px;
        color: #888;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .detail-btn {
        font-size: 15px;
        font-weight: 700;
        color: #ff6a00;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .soft-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 70px rgba(0,0,0,0.08);
    }
        /* Konteyner ve Genel Ayarlar */
    .services-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 50px;
    }

    /* Ana Kart Tasarımı */
    .ultra-card {
        position: relative;
        background: #ffffff;
        border-radius: 45px;
        padding: 60px 35px 40px;
        text-align: center;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    }

    /* İkon Alanı - En Büyük Değişim Burada */
    .icon-wrapper {
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        z-index: 5;
    }

    .icon-shape {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 15px 30px rgba(var(--p-rgb), 0.2);
        transform: rotate(-10deg); /* Hafif yamuk duruş karaktere sahip */
        transition: 0.5s;
        border: 1px solid rgba(var(--p-rgb), 0.1);
    }

    .icon-shape i {
        font-size: 42px;
        background: linear-gradient(135deg, var(--p), #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transform: rotate(10deg); /* İkonu düzelt */
        transition: 0.5s;
    }

    /* Arka Plan Glow (Parlama) */
    .icon-glow {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: var(--p);
        filter: blur(25px);
        opacity: 0.15;
        border-radius: 50%;
        transition: 0.5s;
    }

    /* Hareketli Bilgi Rozetleri */
    .floating-info {
        position: absolute;
        padding: 8px 16px;
        background: #fff;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 800;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 6;
        animation: floatOrbital 6s ease-in-out infinite;
    }

    .badge-1 { top: 20px; right: -20px; animation-delay: 0s; color: #f59e0b; }
    .badge-2 { bottom: 60px; left: -30px; animation-delay: -2s; color: #10b981; }

    /* Hover Animasyonları */
    .ultra-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 70px rgba(0,0,0,0.08);
        border-color: var(--p-light);
    }

    .ultra-card:hover .icon-shape {
        transform: rotate(0deg) scale(1.1);
        background: var(--p);
    }

    .ultra-card:hover .icon-shape i {
        -webkit-text-fill-color: #fff;
        transform: rotate(0deg);
    }

    .ultra-card:hover .icon-glow {
        opacity: 0.4;
        transform: scale(1.3);
    }

    /* Metin Stilleri */
    .ultra-card h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 15px;
    }

    .ultra-card p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.7;
    }

    /* Baloncuk Animasyonu */
    @keyframes floatOrbital {
        0%, 100% { transform: translate(0, 0); }
        25% { transform: translate(5px, -10px); }
        50% { transform: translate(-5px, 5px); }
        75% { transform: translate(10px, 0); }
    }

    /* Mobilde düzenleme */
    @media (max-width: 768px) {
        .floating-info { display: none; }
    }
    :root {
        --p: #f6661f;
        --p-rgb: 246, 102, 31;
        --dark: #0f172a;
        --success: #10b981;
        --glass: rgba(255, 255, 255, 0.8);
        --card-bg: #ffffff;
    }

    .pricing-container {
        padding: 80px 20px;
        background: radial-gradient(circle at top right, rgba(246,102,31,0.05), transparent),
                    radial-gradient(circle at bottom left, rgba(15,23,42,0.03), transparent);
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 35px;
        max-width: 1250px;
        margin: 0 auto;
        align-items: stretch;
    }

    .premium-card {
        background: var(--card-bg);
        border: 1px solid #eef2f6;
        border-radius: 40px;
        padding: 45px 35px;
        position: relative;
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    }

    .premium-card:hover {
        transform: translateY(-15px);
        border-color: rgba(var(--p-rgb), 0.3);
        box-shadow: 0 30px 60px -15px rgba(var(--p-rgb), 0.15);
    }

    /* Popüler Kart Vurgusu */
    .premium-card.popular {
        background: linear-gradient(180deg, #ffffff 0%, #fff9f6 100%);
        border: 2px solid var(--p);
    }

    .popular-tag {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--p);
        color: #fff;
        padding: 6px 20px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1px;
        box-shadow: 0 10px 20px -5px rgba(var(--p-rgb), 0.4);
    }

    /* İkon Stili */
    .card-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--p-soft), rgba(var(--p-rgb), 0.15));
        color: var(--p);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 25px;
        transition: 0.4s;
    }

    .premium-card:hover .card-icon {
        transform: scale(1.1) rotate(-5deg);
        background: var(--p);
        color: #fff;
    }

    /* Fiyat Alanı */
    .price-wrap { margin-bottom: 30px; }
    .old-price { color: #94a3b8; text-decoration: line-through; font-size: 16px; margin-bottom: 5px; display: block; }
    .new-price { font-size: 52px; font-weight: 900; color: var(--dark); letter-spacing: -2px; line-height: 1; }
    .new-price span { font-size: 18px; color: #64748b; font-weight: 600; letter-spacing: 0; }

    /* Özellikler */
    .features-list { list-style: none; padding: 0; margin: 0 0 40px 0; flex-grow: 1; }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
        font-size: 15.5px;
        color: #475569;
    }

    .feature-item i {
        color: var(--success);
        background: rgba(16, 185, 129, 0.1);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

    /* Geri Sayım Kutusu (Daha Dinamik) */
    .timer-container {
        background: #0f172a;
        color: #fff;
        border-radius: 25px;
        padding: 20px;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
    }

    .timer-container::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(45deg, transparent, rgba(246,102,31,0.2));
    }

    .timer-label {
        font-size: 10px;
        text-align: center;
        display: block;
        font-weight: 800;
        color: var(--p);
        margin-bottom: 10px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .timer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .t-unit { text-align: center; }
    .t-val { font-size: 20px; font-weight: 900; display: block; line-height: 1; margin-bottom: 4px; color: #fff; }
    .t-lbl { font-size: 9px; color: #94a3b8; font-weight: 700; text-transform: uppercase; }

    /* Satın Al Butonu */
    .btn-buy {
        background: var(--dark);
        color: #fff;
        text-align: center;
        padding: 20px;
        border-radius: 20px;
        font-weight: 800;
        text-decoration: none;
        transition: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 16px;
    }

    .btn-buy:hover {
        background: var(--p);
        box-shadow: 0 15px 30px -10px rgba(var(--p-rgb), 0.5);
    }

    .btn-buy i { transition: 0.3s; }
    .btn-buy:hover i { transform: translateX(5px); }
    
            :root {
            --p: #ff6600; --p-dark: #cc5200; --p-light: rgba(255, 102, 0, 0.1);
            --dark: #0f172a; --text: #334155; --gray: #64748b; --border: #e2e8f0; --white: #ffffff;
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
            --glass: rgba(255, 255, 255, 0.85);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
        body { background-color: var(--white); color: var(--text); overflow-x: hidden; }
        
        body::before {
            content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 90% 10%, var(--p-light) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, var(--p-light) 0%, transparent 40%);
            z-index: -1;
        }

        nav { 
            padding: 20px 10%; display: flex; justify-content: space-between; align-items: center; 
            background: var(--glass); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); transition: 0.4s; 
        }
        .logo { font-size: 30px; font-weight: 900; color: var(--dark); font-family: 'Outfit'; text-decoration: none; letter-spacing: -1px; }
        .logo span { color: var(--p); }
        .nav-links { display: flex; align-items: center; gap: 35px; list-style: none; }
        .nav-links a { font-weight: 700; font-size: 14px; color: var(--dark); text-decoration: none; transition: 0.3s; }
        .nav-links a:hover { color: var(--p); }
        .btn-cta { background: var(--p); color: #fff !important; padding: 12px 28px; border-radius: 14px; font-weight: 800; border: none; cursor: pointer; transition: 0.3s; text-decoration: none; }
        .btn-cta:hover { background: var(--p-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,102,0,0.2); }

        .hero { 
            background: var(--dark); color: #fff; padding: 160px 10% 260px; position: relative; overflow: hidden; 
            background-image: linear-gradient(rgba(15,23,42,0.85), rgba(15,23,42,0.85)), url('<?php echo $slider['resim_yolu'] ?? ""; ?>');
            background-size: cover; background-position: center;
        }
        .hero h1 { font-size: clamp(40px, 6vw, 80px); font-weight: 900; font-family: 'Outfit'; line-height: 1.1; margin-bottom: 30px; }
        .hero h1 span { color: var(--p); }
        .hero p { font-size: 20px; opacity: 0.8; max-width: 650px; margin-bottom: 40px; font-weight: 300; line-height: 1.6; }

        .stats { padding: 0 10%; margin-top: -120px; position: relative; z-index: 10; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
        .stat-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 40px 20px; border-radius: 35px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: 0.4s; }
        .stat-card:hover { transform: translateY(-10px); border-color: var(--p); }

        .section { padding: 100px 10%; position: relative; }
        .title-box { text-align: center; margin-bottom: 60px; }
        .title-box h2 { font-size: 42px; font-weight: 900; font-family: 'Outfit'; color: var(--dark); }
        .title-box h2 span { color: var(--p); }
        .badge { background: var(--p-light); color: var(--p); padding: 8px 20px; border-radius: 50px; font-size: 11px; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; display: inline-block; letter-spacing: 2px; }

        .tech-icon { position: absolute; opacity: 0.05; font-size: 80px; z-index: -1; pointer-events: none; }

        .comment-card { 
            background: #fff; border: 1px solid var(--border); border-radius: 35px; padding: 40px; 
            transition: 0.4s; position: relative; display: flex; flex-direction: column; height: 100%;
        }
        .comment-card::before {
            content: "\f10d"; font-family: "Font Awesome 6 Free"; font-weight: 900;
            position: absolute; top: 30px; right: 40px; font-size: 40px; color: var(--p-light);
        }
        .comment-card:hover { border-color: var(--p); transform: scale(1.02); box-shadow: var(--shadow); }
        .comment-text { font-size: 16px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 25px; flex-grow: 1; }
        .user-info { display: flex; align-items: center; gap: 15px; }
        .user-avatar { width: 55px; height: 55px; background: linear-gradient(135deg, var(--p), var(--p-dark)); border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 20px; box-shadow: 0 10px 15px rgba(255,102,0,0.2); }
        
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .p-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

        .card { background: #fff; border: 1px solid var(--border); border-radius: 40px; padding: 40px; transition: 0.4s; position: relative; overflow: hidden; }
        .card:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-color: var(--p); }
        
        .p-card { background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 15px; text-align: center; transition: 0.3s; }
        .p-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 20px; margin-bottom: 15px; }
        .p-price { font-size: 24px; font-weight: 900; color: var(--p); font-family: 'Outfit'; margin: 12px 0; }

        .why-us { background: var(--dark); color: #fff; border-radius: 80px; margin: 0 2%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; padding: 100px 8%; align-items: center; }

        .faq-item { background: var(--white); border-radius: 20px; margin-bottom: 15px; border: 1px solid var(--border); overflow: hidden; }
        .faq-question { padding: 20px 30px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 700; align-items: center; }
        .faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: 0.4s; color: var(--gray); font-size: 15px; }
        .faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }

        footer { background: var(--dark); color: #fff; padding: 100px 10% 40px; border-top-left-radius: 100px; border-top-right-radius: 100px; }
        
        .reveal { opacity: 0; transform: translateY(30px); transition: 1s all ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        @media (max-width: 1024px) { .grid-3, .p-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .grid-3, .p-grid, .stats-grid, .why-us { grid-template-columns: 1fr; } }
   /* Sadece bu kısmı değiştiriyoruz */
.stats {
    position: relative;
    z-index: 20; /* Slider'ın üzerine çıkar */
    margin-top: -120px; /* Yukarı çekme ayarı - gerekirse sayıyı değiştir */
    padding-bottom: 60px;
    
    /* İŞTE DUMANLI GÖRÜNÜMÜ DÜZELTEN YENİ ARKA PLAN GEÇİŞİ */
    /* Üst kısım tamamen şeffaf (transparent), alt kısım net bir şekilde sitenin zemin rengine (#f0f4f8) dönüşüyor */
    background: linear-gradient(to bottom, 
        rgba(240, 244, 248, 0) 0%,   /* En üst: Tamamen şeffaf */
        rgba(240, 244, 248, 0) 35%,  /* %35'e kadar şeffaf devam et */
        rgba(240, 244, 248, 0.9) 50%, /* Ortada hızlıca netleş */
        #f0f4f8 100%                 /* En alt: Tamamen sitenin zemin rengi */
    );
}

/* --- Diğer kodlar (stats-grid, stat-card vs.) AYNI KALACAK, dokunma --- */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4D KART TASARIMI (AYNI) */
.stat-card {
    flex: 1; /* Eşit genişlik garantisi */
    background: #ffffff;
    border-radius: 25px; /* Oval köşeler */
    padding: 40px 20px;
    text-align: center;
    
    /* 4D Derinlik Efekti */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 
                0 5px 15px rgba(0,0,0,0.03);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid rgba(0,0,0,0.02); /* Hafif alt çizgi */
}

/* Hover Efekti (AYNI) */
.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* İkon Alanı (AYNI) */
.icon-area {
    font-size: 45px;
    color: var(--p); /* Sitenin ana rengi */
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1)); /* İkon gölgesi */
}

/* Yazı Ayarları (AYNI) */
.stat-card h2 {
    font-size: 38px;
    font-weight: 800;
    color: #333;
    margin: 5px 0;
    font-family: 'Outfit', sans-serif;
}

.stat-card p {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    margin: 0;
}

/* Mobil Ayarı (AYNI) */
@media (max-width: 768px) {
    .stats { margin-top: 0; background: #f0f4f8; padding-top: 40px; }
    .stats-grid { flex-wrap: wrap; }
    .stat-card { flex: 1 1 100%; margin-bottom: 20px; }
}

/* Yorum alanı css */
/* Ana Bölüm Düzeni */
.section.reveal {
    padding: 80px 0;
    background-color: #fcfcfc; /* Çok hafif gri, beyazdan ayırmak için */
}

/* Başlık Alanı */
.title-box {
    text-align: center;
    margin-bottom: 50px;
}

.title-box .badge {
    background: rgba(var(--p-rgb), 0.1); /* Temana uygun hafif arka plan */
    color: var(--p);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.title-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
}

.title-box h2 span {
    color: var(--p); /* Tema rengin */
    font-style: italic; /* El yazısı havası */
}

/* Grid Yapısı (Otomatik Hiza) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* YORUM KARTI TASARIMI (4D) */
.comment-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    
    /* Derinlik ve Gölge */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    
    transition: all 0.3s ease;
    overflow: hidden; /* Taşmaları gizle */
}

/* Kart Hover Efekti */
.comment-card:hover {
    transform: translateY(-10px); /* Yukarı kalkar */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Dekoratif Tırnak İşareti (Arka planda silik durur) */
.comment-card::before {
    content: '\f10d'; /* FontAwesome Tırnak İkonu */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(0,0,0,0.03); /* Çok silik gri */
    z-index: 0;
}

/* Yıldızlar */
.comment-card .stars {
    color: #ffb400; /* Altın sarısı */
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Yorum Metni */
.comment-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Kullanıcı Bilgisi Alanı */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #f1f1f1; /* Üstüne ince çizgi */
    padding-top: 20px;
}

/* Avatar Tasarımı (Yuvarlak Harf) */
.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--p), #4a90e2); /* Tema rengi geçişi */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(var(--p-rgb), 0.3);
}

/* İsim ve Ünvan */
.user-details h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    font-family: 'Outfit', sans-serif;
}

.user-details small {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-top: 3px;
}    