/**
 * Legal pages styles (privacy, terms, contacts)
 */

:root {
    --primary-color: #6366f1;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --bg-color: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.7;
}

.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Contacts page needs wider content */
.content-wrapper.wide {
    max-width: 900px;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.last-updated,
.subtitle {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

p, li {
    color: #475569;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Contacts page specific styles */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    width: 24px;
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 2px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-value {
    color: var(--text-color);
}

.requisites-table {
    width: 100%;
}

.requisites-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.requisites-table tr:last-child {
    border-bottom: none;
}

.requisites-table td {
    padding: 0.75rem 0;
    vertical-align: top;
}

.requisites-table td:first-child {
    color: var(--text-muted);
    font-size: 0.9rem;
    width: 40%;
}

.requisites-table td:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.working-hours {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.working-hours-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.working-hours-value {
    color: var(--text-muted);
    font-size: 0.9rem;
}
