/* Специфичные стили для страницы установки FreePBX */
/* Примечание: стили футера в основном файле styles.css */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    box-shadow: 0 6px 10px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: #2e2570;
}

.feature-card h3 {
    color: #2e2570;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 1.1em;
}

.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2.5em;
    color: #2e2570;
    margin-bottom: 30px;
    position: relative;
}

.benefits-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2e2570;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.2em;
    color: #444;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e2570;
    font-weight: bold;
}

.benefits-list li:hover {
    color: #2e2570;
}

.benefits-image {
    position: relative;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-image {
        margin-top: 20px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 15px;
    }

    .benefits-image {
        margin: 20px 0;
    }
    
    .benefits-content h2 {
        font-size: 2em;
    }
    
    .benefits-list li {
        font-size: 1.1em;
    }
} 