/* Stili per la sezione Metodologia migliorata */
.methodology-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.methodology-intro .image-placeholder {
    margin-right: 30px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.step-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-benefits {
    margin-top: 15px;
    padding-left: 20px;
}

.step-benefits li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    list-style-type: none;
}

.step-benefits li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: -10px;
}

/* Stili per la sezione Tecnologie migliorata */
.tech-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-intro .image-placeholder {
    margin-right: 30px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tech-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 8px;
}

.tech-badge {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Responsive per le nuove sezioni */
@media (max-width: 768px) {
    .methodology-intro, .tech-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .methodology-intro .image-placeholder, .tech-intro .image-placeholder {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-icon {
        top: 10px;
        right: 10px;
    }
}