* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1e24;
    color: #d0d8e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1100px;
    width: 100%;
}

.header {
    margin-bottom: 3.5rem;
    border-bottom: 2px solid #2f3842;
    padding-bottom: 2rem;
}

.header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: #f0f4f8;
    letter-spacing: -0.5px;
    margin-bottom: 0.3rem;
}

.header .sub {
    font-size: 1.1rem;
    color: #a8b8c8;
    font-style: italic;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #eef2f6;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #2f3842;
    padding-bottom: 0.3rem;
    letter-spacing: 0.5px;
}

.section p {
    margin-bottom: 0.6rem;
    color: #c0c8d0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0.5rem;
}

.service-block {
    background: #222a32;
    padding: 1.5rem 1.2rem;
    border-radius: 4px;
    border-left: 6px solid #5b8fc9;   /* акцентный синий */
}

.service-block h3 {
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #eef2f6;
    margin-bottom: 0.3rem;
}

.service-block p {
    margin: 0;
    font-size: 0.95rem;
    color: #b0bcc8;
}

.status-badge {
    display: inline-block;
    background: #2f3842;
    color: #5b8fc9;
    font-size: 0.8rem;
    padding: 0.1rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid #5b8fc9;
}

.section .note {
    margin-top: 0.2rem;
    color: #8a9aa8;
    font-size: 0.95rem;
}

.contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    margin-top: 0.5rem;
}

.contacts a {
    color: #5b8fc9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
    font-size: 1rem;
}

.contacts a:hover {
    border-bottom-color: #5b8fc9;
    color: #7dafe0;
}

.footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2f3842;
    font-size: 0.85rem;
    color: #7a8a98;
    text-align: center;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 650px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .header h1 {
        font-size: 2.2rem;
    }
    .section h2 {
        font-size: 1.3rem;
    }
}