.ca-roi-section {
    padding: 80px 20px;
    background: #ffffff;
}

.ca-roi-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.ca-roi-title-main {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #000000;
    font-weight: 700;
}

.ca-roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ca-roi-highlight-box {
 background: linear-gradient(135deg, #3ce86a 0%, #5ac483 100%);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.ca-roi-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
        color: white;
}

.ca-roi-big-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
}

.ca-roi-subtitle {
    font-size: 2rem ;
}

.ca-roi-benefits {
    padding: 20px;
      background: linear-gradient(135deg, #f6f2fb 0%, #ede7f6 100%);
      border-radius: 10px;
}

.ca-roi-list {
    list-style: none;
    padding: 0;
    margin: 0;
        font-size: 1.5rem ;
}

.ca-roi-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ca-roi-check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ca-roi-item span {
    display: block;
       font-size: 1.5rem ;
}

/* Responsywność */
@media (max-width: 768px) {
    .ca-roi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ca-roi-title-main {
        font-size: 2.5rem;
    }
    
    .ca-roi-big-number {
        font-size: 2.5rem;
    }
    
    .ca-roi-item {
        font-size: 1.4rem;
    }
}