    :root {
        --brand-blue: #2563eb;
        --brand-dark: #0f172a;
        --text-gray: #64748b;
        --font-main: 'Plus Jakarta Sans', sans-serif;
    }

    body {
        background-color: #f8fafc;
        margin: 0;
        font-family: var(--font-main);
    }

    /* --- Hero Section --- */
    .hero-section {
        position: relative;
        padding: 180px 0 140px;
        color: #fff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-bg .bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-bg .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(181deg, rgba(1, 2, 42, 0.1) 0%, rgba(15, 23, 42, 0.2) 10%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        max-width: 850px;
        margin: 114px auto;
        padding: 0 20px;
    }

    /* Üst Küçük Başlık */
    .promo-label {

        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(37, 99, 235, 0.2);
        padding: 6px 16px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 24px;
    }

    /* Ana Başlık */
    .hero-content h1 {
        font-size: 58px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -2px;
        color: #ffffff;
    }

    .hero-content h1 span {
        background: linear-gradient(to right, #60a5fa, #2563eb);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-content p {
        font-size: 19px;
        color: #cbd5e1;
        margin-bottom: 48px;
        line-height: 1.6;
        font-weight: 400;
    }

    /* --- Temiz Arama Kutusu (3D Değil, Premium Deep Shadow) --- */
    .search-box {
        display: flex;
        background: #fff;
        padding: 8px;
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); /* Yumuşak ama derin gölge */
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .search-input-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0 20px;
        position: relative;
    }

    .search-input-wrap:first-child {
        border-right: 1px solid #e2e8f0;
    }

    .search-input-wrap i {
        color: var(--brand-blue);
        font-size: 18px;
        margin-right: 12px;
    }

    .search-input-wrap input {
        border: none;
        outline: none;
        width: 100%;
        height: 54px;
        font-size: 16px;
        font-weight: 500;
        color: var(--brand-dark);
        font-family: var(--font-main);
    }

    .btn-search {
        background: var(--brand-blue);
        color: #fff;
        border: none;
        padding: 0 32px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-search:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }

    /* --- Mobil Düzen --- */
    @media (max-width: 768px) {
        .hero-content h1 { font-size: 36px; letter-spacing: -1px; }
        .hero-content { margin: -8px auto;}
        .search-box { flex-direction: column; padding: 12px; gap: 10px; }
        .search-input-wrap { border-right: none !important; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }
        .btn-search { width: 100%; height: 54px; justify-content: center; }
    }


    /* --- Kariyer PLANLAMASI --- */    /* --- Kariyer PLANLAMASI --- */    /* --- Kariyer PLANLAMASI --- */
        .career-planning-section {
        padding: 60px 0;
        background: #f5f7fa;
    }

    /* Sağdan soldan boşluk bırakan ana kapsayıcı */
    .career-container {
        max-width: 1100px; /* Genişliği kısıtladık */
        margin: 0 auto;
        padding: 0 40px; /* İçeriden ekstra boşluk */
    }

    .career-flex-layout {
        display: flex;
        align-items: center;
        gap: 80px;
    }

    .career-content-side { flex: 1.2; }
    .career-visual-side { 
        flex: 0.8; 
        position: relative; 
        display: flex; 
        justify-content: center; 
    }

    .mini-title { color: #2563eb; font-weight: 800; font-size: 12px; letter-spacing: 1.5px; opacity: 0.8; }
    .main-title { font-size: 40px; font-weight: 800; color: #0f172a; margin: 10px 0 20px; line-height: 1.1; }
    .main-title span { color: #2563eb; }
    .desc-text { color: #64748b; font-size: 16px; margin-bottom: 35px; line-height: 1.6; }

    /* Grid Kartlar */
    .info-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .info-card {
        background: #fff;
        padding: 18px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }

    .icon-box {
        width: 38px;
        height: 38px;
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .info-val { font-size: 13.5px; font-weight: 600; color: #334155; }

    /* Araç Butonları */
    .quick-tools { display: flex; gap: 12px; }
    .tool-btn {
        background: #fff;
        padding: 10px 20px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        color: #1e293b;
        border: 1px solid #e2e8f0;
        cursor: pointer;
        transition: 0.2s;
    }
    .tool-btn:hover { background: #2563eb; color: #fff; border-color: #2563eb; }

    /* Görsel Alanı */
    .blue-ring {
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: #2563eb;
        opacity: 0.95;
    }

    .driver-img {
        position: relative;
        z-index: 2;
        max-width: 100%;
        transform: translateY(-15px);
    }

    @media (max-width: 992px) {
        .career-flex-layout { flex-direction: column; text-align: center; gap: 50px; }
        .info-cards-grid { grid-template-columns: 1fr; }
        .quick-tools { justify-content: center; }
        .blue-ring { width: 280px; height: 280px; }
    }

        /* --- Kariyer PLANLAMASI --- */    /* --- Kariyer PLANLAMASI --- */    /* --- Kariyer PLANLAMASI --- */

     /* REFERANS */
.partners-section {
    padding: 60px 0 80px;
    background: #f5f7fa;
}

.partners-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-subtitle { 
    color: #64748b; 
    font-weight: 700; 
    font-size: 11px; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.partners-title { 
    font-size: 32px; 
    font-weight: 800; 
    color: #0f172a; 
    margin: 0;
}

.partners-title span { color: #2563eb; }

/* KAYDIRMA (MARQUEE) ALANI */
.partners-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* Sağ ve Sol Kenar Soluklaştırma Efekti (İsteğe Bağlı) */
.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f5f7fa 0%, transparent 100%);
}
.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f5f7fa 0%, transparent 100%);
}

/* KAYAN ŞERİT */
.partners-track {
    display: flex;
    width: max-content;
    /* Animasyon hızı: 20s (Logo sayısına göre artırıp azaltabilirsin) */
    animation: scrollLogos 25s linear infinite; 
}

/* Fare üzerine gelince kaymayı durdurmak için: */
.partners-marquee:hover .partners-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* İki set olduğu için tam %50'de başa kusursuz döner */
}

/* LOGO KARTLARI */
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter: grayscale(1); 
    opacity: 0.5;
    transition: all 0.4s ease;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    /* Genişliği sabitliyoruz ki kayarken bozulmasın */
    min-width: 160px; 
    margin-right: 30px; 
    cursor: pointer;
}

.partner-logo img {
    max-width: 100%;
    height: 45px; 
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-name {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Üzerine gelince canlanma efekti */
.partner-logo:hover {
    filter: grayscale(0); 
    opacity: 1;
    background: #f8fafc;
    transform: translateY(-5px);
}

.partner-logo:hover .partner-name {
    opacity: 1;
}

/* Mobil Düzen için Hız Ayarı (İsteğe bağlı) */
@media (max-width: 576px) {
    .partners-title { font-size: 24px; }
    .partner-logo { min-width: 130px; margin-right: 20px; }
}
/* REFERANS */

        /* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS */

        .faq-section {
        padding: 80px 0;
        background: #f5f7fa;
    }

    .faq-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .faq-subtitle { color: #2563eb; font-weight: 800; font-size: 12px; letter-spacing: 1.5px; }
    .faq-title { font-size: 36px; font-weight: 800; color: #0f172a; margin: 10px 0; }
    .faq-title span { color: #2563eb; }
    .faq-header p { color: #64748b; font-size: 16px; }

    /* Akordiyon Listesi */
    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: 0.3s;
    }

    .faq-question {
        padding: 22px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 700;
        color: #1e293b;
        font-size: 16px;
        transition: 0.3s;
    }

    .faq-question i {
        font-size: 14px;
        transition: transform 0.4s ease;
        color: #94a3b8;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fff;
    }

    .faq-answer p {
        padding: 20px 25px;
        color: #64748b;
        line-height: 1.6;
        margin: 0;
        font-size: 15px;
    }

    /* Açık Durum (Active) */
    .faq-item.active {
        border-color: #2563eb;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.05);
    }

    .faq-item.active .faq-question {
        color: #2563eb;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
        color: #2563eb;
    }

    .faq-item.active .faq-answer {
        max-height: 200px; /* İçeriğe göre ayarlanır */
        border-top: 1px solid #f1f5f9;
    }
    /* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS *//* SSS */