body {
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

.page-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-top: 100px;
    color: #0d2b63;
}

.intro-text {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
}

/* Form */
.contact-form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Neon button */
.neon-btn {
    background-color: #0d2b63;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 0 15px #0d2b63;
    transition: all 0.3s ease;
}
.neon-btn:hover {
    box-shadow: 0 0 30px #0d2b63, 0 0 60px #d32f2f;
    transform: scale(1.05);
}

/* Info card */
.info-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(13,43,99,0.4);
}

.section-title {
    font-size: 2rem;
    color: #0d2b63;
    margin-bottom: 20px;
}

/* Palloni */
.bouncing-ball {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('../img/ball.png') no-repeat center;
    background-size: contain;
    animation: bounce 6s infinite ease-in-out;
    opacity: 0.2;
}
.ball1 { top: 10%; left: 15%; animation-delay: 0s; }
.ball2 { top: 30%; left: 70%; animation-delay: 1.5s; }
.ball3 { top: 60%; left: 40%; animation-delay: 3s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-50px) rotate(360deg); }
}