:root {
    --primary-color: #ff6b00;
    --secondary-color: #ff8533;
    --text-color: #2d3436;
    --light-bg: #f5f6fa;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #ff9800, #ff5722); /* Оранжевый градиент */
    color: var(--text-color);
    line-height: 1.6;
}

.about-card {
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.about-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.advantages-section {
    background: rgba(255, 107, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.9);
}

.advantage-item.special {
    border: 2px solid var(--primary-color);
    background: rgba(255, 107, 0, 0.05);
}

.advantage-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-card {
        margin: 1rem;
        padding: 1.5rem !important;
    }

    .advantages-section {
        padding: 1rem;
    }

    .advantage-item {
        padding: 0.5rem;
    }
}