/* Header della pagina */
.page-header {
    padding: 160px 0 60px;
    text-align: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 178, 255, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header p {
    color: var(--light-text);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Griglia about */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-blue);
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--darker-bg);
    border-radius: 8px;
    border: 1px solid rgba(0, 178, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.values-list li::before {
    content: "→";
    margin-right: 10px;
    color: var(--primary-blue);
}

.values-list li:hover {
    border-color: var(--primary-blue);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 178, 255, 0.1);
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 178, 255, 0.2);
    border: 1px solid rgba(0, 178, 255, 0.1);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(0, 178, 255, 0.3);
}

/* Sezione Team */
.team-section {
    padding-top: 2rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--darker-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 178, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 178, 255, 0.2);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid transparent;
    background: var(--gradient-1);
    padding: 3px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.team-member p {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-text h2,
    .team-section h2 {
        font-size: 2rem;
    }
    
    .values-list li {
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
    
    .values-list li:hover {
        transform: none;
    }
}

