
        *, *::before, *::after {
            box-sizing: border-box;
        }
        html, body {
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, Helvetica, sans-serif;
            width: 100%;
            overflow-x: hidden; 
        }

        .topbar {
            width: 100vw;
            background: #000000;
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            flex-wrap: wrap;               
            gap: 20px;
        }

        .logo-link {
            text-decoration: none;
            color: inherit;
        }

        .topbar h1 {
            margin: 0;
            font-size: 2.6rem;
            transition: 0.3s;
        }

        .logo-link:hover h1 {
            color: #00d4ff;
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
        }

        .menu {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;             
            justify-content: center;
        }

        .btn {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 20px;
            border: 2px solid transparent;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn:hover {
            background: #00d4ff;
            border-color: #00d4ff;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
        }

        .content1 {
            background-color: whitesmoke;
            min-height: 100vh;
            padding-bottom: 50px;
        }

        .gallery {
            display: flex;
            gap: 30px;
            padding: 50px 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .card {
            position: relative;
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        .card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .caption {
            position: absolute;
            top: 30px;
            left: 30px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 12px 24px;
            font-size: 1.8rem;
            font-weight: bold;
            border-radius: 12px;
            backdrop-filter: blur(5px);
        }

        .card a {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

       
        @media (max-width: 900px) {
            .topbar {
                flex-direction: column;
                padding: 25px 20px;
                text-align: center;
            }
            .topbar h1 {
                font-size: 2.2rem;
            }
            .menu {
                gap: 12px;
            }
            .btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
        }

        @media (max-width: 500px) {
            .topbar h1 {
                font-size: 1.9rem;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
        }

        
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 30px 20px;
            font-size: 14px;
        }
        footer a {
            color: #4fc3f7;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .legal-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 1.5rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
}

.legal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 70px;
}

.legal-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.legal-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.15);
    border: 1px solid #00d4ff33;
}

.legal-card i {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #00d4ff;
}

.legal-card h3 {
    font-size: 1.6rem;
    margin: 15px 0;
    color: #222;
}

.legal-card .price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00d4ff;
    margin: 15px 0;
}

.legal-card ul {
    text-align: left;
    line-height: 1.8;
    color: #444;
    margin: 20px 0 0;
}

.legal-card ul li {
    margin: 8px 0;
}

.legal-cta {
    margin-top: 50px;
}