/* Sadece İletişim Kartına Özel Stiller */
.evkizi-contact-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    color: #334155;
}

.contact-card {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 40px;
    box-sizing: border-box;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    color: #0f172a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-header p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-section h3 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-list li strong {
    color: #334155;
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.info-list li span {
    color: #64748b;
    display: block;
}

.info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #eab308;
    margin-top: 2px;
}

.info-icon--muted {
    color: #64748b;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #eab308;
}

.trust-badge {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    line-height: 1.45;
    width: 100%;
    box-sizing: border-box;
}

.trust-badge__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.trust-badge__text {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 24px;
    }
}
