.ca-summary-section {
    background: white;
    padding: 80px 20px;
}

.ca-summary-container {
    max-width: 900px;
    margin: 0 auto;
}

.ca-summary-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
    font-weight: 700;
}

.ca-summary-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ca-summary-lead {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.ca-summary-subtitle {
    font-size: 1.8rem;
    color: #4B0082;
    font-weight: 500;
}

.ca-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

.ca-summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f6f2fb 0%, #ede7f6 100%);
}

.ca-summary-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.ca-summary-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.ca-summary-item span {
    line-height: 1.5;
    color: #333;
}

/* Responsywność */
@media (max-width: 768px) {
    .ca-summary-section {
        padding: 60px 20px;
    }
    
    .ca-summary-title {
        font-size: 2.5rem;
    }
    
    .ca-summary-lead {
        font-size: 1.6rem;
    }
    
    .ca-summary-subtitle {
        font-size: 1.4rem;
    }
    
    .ca-summary-item {
        font-size: 1.4rem;
        padding: 15px;
    }
    
    .ca-summary-check {
        width: 28px;
        height: 28px;
    }
}