body {
    font-family: 'Inter', sans-serif;
    color: #1B1B1B;
    background-color: #FAF9F6; /* Мягкий теплый фон вместо чисто белого */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
        
.section-bg {
    background-color: #FFFFFF;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #333333; /* Темно-серый вместо чисто черного */
}

.btn-primary {
    background-color: #0D3B66;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0a2e4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-accent {
    background-color: #F95738;
    color: white;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #e04d31;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 87, 56, 0.25);
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #0D3B66;
}

.contact-card {
    background-color: #f8f9fa;
    border-left: 4px solid #0D3B66;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.text-soft-black {
    color: #2c2c2c; /* Мягкий черный для лучшего восприятия */
}