.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #111;
    padding-top: 80px; /* Per compensare l'header */
}

.about-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff; /* Testo bianco */
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
}

.model-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
}

#3d-model {
    width: 100%;
    height: 100%;
}

#model-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Stili per il menu in questa sezione */
.main-header {
    background: rgba(0, 0, 0, 0.8); /* Menu semi-trasparente */
    backdrop-filter: blur(10px); /* Effetto blur */
}

.main-header .nav-links a {
    color: #fff !important; /* Link del menu sempre bianchi */
}

/* Media query per responsività */
@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .model-container {
        height: 50vh;
    }
}