        body {
            font-family: Arial, sans-serif;
            background: url('../img/padel-arena-bg.jpg') no-repeat center center/cover;
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
        }
        body::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
            z-index: 0;
        }
        .overlay {
            
            position: relative; z-index: 1;
            padding: 40px; max-width: 700px; width: 90%;
        }
        h1 { 
            font-size: 2.5rem;
             margin-bottom: 10px; }
        h2 { 
            font-size: 1.8rem;
             margin-bottom: 20px;
             }
        ul { 
            text-align: left;
             margin: 20px auto;
              max-width: 400px;
               font-size: 1.1rem; 
            }
        ul li { 
            margin-bottom: 10px; 
        }
        .contact-box {
            background: rgba(255,255,255,0.95);
            color: #000; padding: 20px; border-radius: 8px; margin-top: 20px;
        }

        .contact-box h3 { 
            margin-bottom: 10px; 
        }

        input[type="text"], input[type="email"] {
            width: 90%; padding: 10px; margin-bottom: 10px;
            border: 1px solid #ccc; border-radius: 5px;
        }

        button {
            background: #007bff; color: #fff; border: none;
            padding: 12px 20px; border-radius: 5px; cursor: pointer; font-size: 1rem;
        }

        button:hover { 
            background: #0056b3; 
        }
        .mailto-btn {
            display: inline-block; background: #28a745; color: #fff;
            text-decoration: none; padding: 12px 20px; border-radius: 5px;
            font-size: 1rem; margin-top: 15px;
        }

       

        footer {
    height: 50px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.white{
    color: #fff;
}



        @media (max-width: 768px) {
            h1 { font-size: 2rem; } 
            h2 { font-size: 1.4rem; }
        }


