:root {
    --sozlesme-bg: #f8fafc;
    --sozlesme-blue: #2b59c3;
    --sozlesme-blue-light: #f0f7ff;
    --sozlesme-text: #334155;
    --sozlesme-heading: #1e293b;
    --sozlesme-border: #e2e8f0;
    --sozlesme-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sozlesme-page {
    background-color: var(--sozlesme-bg);
    padding: 120px 0 80px;
    font-family: 'Outfit', sans-serif;
    color: var(--sozlesme-text);
}

.sozlesme-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sozlesme-header {
    text-align: center;
    margin-bottom: 50px;
}

.sozlesme-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: white;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--sozlesme-shadow);
    color: var(--sozlesme-blue);
}

.sozlesme-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sozlesme-heading);
    margin-bottom: 15px;
    letter-spacing: -0.025em;
}

.sozlesme-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.sozlesme-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--sozlesme-border);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sozlesme-card.company-info {
    background-color: var(--sozlesme-blue-light);
    border-color: rgba(43, 89, 195, 0.1);
}

.card-head {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--sozlesme-blue);
    font-size: 1.1rem;
}

.card-body {
    padding: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.info-item span {
    font-weight: 500;
    color: var(--sozlesme-heading);
}

.info-item .icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sozlesme-heading);
}

.info-item svg {
    color: var(--sozlesme-blue);
}

.sozlesme-section {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--sozlesme-border);
    margin-bottom: 24px;
}

.sozlesme-section h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sozlesme-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--sozlesme-blue-light);
    padding-bottom: 10px;
    display: inline-block;
}

.section-content {
    line-height: 1.7;
}

.section-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sozlesme-heading);
    margin-top: 20px;
    margin-bottom: 8px;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content ul, .section-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sozlesme-page {
        padding: 80px 0 40px;
    }
    .sozlesme-header h1 {
        font-size: 2rem;
    }
    .sozlesme-section {
        padding: 20px;
    }
}
