/* =========================================
   HAKKIMIZDA SAYFASI ÖZEL STİLLERİ
   ========================================= */

/* --- Misyon & Vizyon Kutuları --- */
.mv-box {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mv-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--accent); /* Sol sarı çizgi */
    transition: height 0.3s;
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

/* --- SERTİFİKA KARTLARI (PDF) --- */
.cert-section {
    background-color: #f8f9fa; /* Hafif gri zemin */
    padding: 80px 0;
}

.cert-card {
    background: var(--white);
    padding: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 30px;
}

.cert-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(13, 23, 60, 0.1);
    transform: translateY(-3px);
}

/* İkon Alanı */
.cert-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 169, 0, 0.1); /* Sarı transparan */
    color: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* İçerik Alanı */
.cert-content {
    flex-grow: 1;
}

.cert-name {
    display: block;
    font-weight: 700;
    color: var(--primary-1000);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cert-desc {
    font-size: 0.85rem;
    color: var(--muted);
    display: block;
}

/* İndirme Butonu (Yuvarlak) */
.cert-download-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
    text-decoration: none;
}

.cert-card:hover .cert-download-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .cert-card { flex-direction: column; text-align: center; }
    .cert-icon-box { margin-bottom: 10px; }
}