/* Стили для блока о проекте */
.project-info-block {
    padding: 20px;
    background: #1a1f2e;
    border-radius: 10px;
    border: 1px solid #2d3748;
}

.project-info-content {
    position: relative;
}

.project-title {
    color: #3a8dff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.project-description {
    color: #b8c2cc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3a8dff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.feature-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: #b8c2cc;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.project-cta {
    text-align: center;
    padding: 20px;
    background: rgba(58, 141, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(58, 141, 255, 0.2);
}

.cta-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cta-btn i {
    font-size: 16px;
}

.cta-btn-secondary {
    background: transparent;
    color: #3a8dff;
    border: 1px solid #3a8dff;
}

.cta-btn-secondary:hover {
    background: #3a8dff;
    color: #ffffff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .project-info-block {
        padding: 15px;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
} 