:root { 
    --theme-green: #017839; 
}

.bg-theme { 
    background-color: var(--theme-green) !important; 
}

/* İK Sayfası Stilleri */
.ik-container {
    min-height: 100vh;
    padding: 2rem 0;
}

.ik-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 50vh;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/ik.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 3rem;
    padding: 2rem;
    position: relative;
}

.ik-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ik-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    top: 3rem;
}

.ik-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--theme-green);
    margin-bottom: 2rem;
    text-align: center;
}

.info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--theme-green);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-green);
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.education-card {
    background: linear-gradient(135deg, #eef8f2, #d9f1e3);
    border: 1px solid #c7e8d5;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.education-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--theme-green);
    margin-bottom: 1rem;
}

.education-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.posting-card {
    background: #fff;
    border: 2px solid var(--theme-green);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.posting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(1, 120, 57, 0.2);
}

.posting-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--theme-green);
    margin-bottom: 1rem;
}

.posting-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-theme {
    background-color: var(--theme-green);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-theme:hover {
    background-color: #015a2d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 120, 57, 0.3);
}

.check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(1, 120, 57, 0.1);
    color: var(--theme-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.apply-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

/* Responsive */
@media (max-width: 991.98px) {
    .ik-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .ik-header {
        height: 40vh;
        min-height: 220px;
        margin-bottom: 2rem;
    }
    
    .ik-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}
