/* Stili identici a privacy.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0e6d2;
            color: #333;
            line-height: 1.6;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #e74c3c;
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 1.5rem;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px;
        }
        .terms-content {
            max-width: 800px;
            margin: 100px auto 50px;
            padding: 2rem;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .terms-content h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #e74c3c;
        }
        .terms-content h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #e74c3c;
        }
        .terms-content p {
            margin-bottom: 1rem;
        }
        footer {
            background-color: #222;
            color: #fff;
            padding: 3rem 2rem;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 2rem;
        }
        .footer-links li {
            margin: 0 1rem;
        }
        .footer-links a {
            color: #fff;
            text-decoration: none;
        }
        .footer-contact {
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #e74c3c;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 1rem 0;
            }
            .burger {
                display: block;
            }
            .terms-content {
                margin: 80px auto 30px;
                padding: 1rem;
            }
        }

