 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
        }

        .logo i {
            font-size: 28px;
            margin-right: 10px;
            color: #1abc9c;
        }

        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #1abc9c;
        }

        .cta-button {
            background: #1abc9c;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #16a085;
        }

        /* Hero Section */
        .hero-legal {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            padding: 80px 50px;
            text-align: center;
            color: white;
        }

        .hero-legal h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-legal p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Main Content */
        main {
            background: #f5f5f5;
        }

        /* Navigation Menu */
        .legal-nav {
            background: white;
            padding: 20px 50px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 68px;
            z-index: 100;
        }

        .legal-nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .legal-nav a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .legal-nav a:hover {
            background: #1abc9c;
            color: white;
        }

        /* Content Container */
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .legal-section {
            background: white;
            padding: 50px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .legal-section h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
            padding-bottom: 15px;
            border-bottom: 3px solid #1abc9c;
        }

        .legal-section .date {
            font-size: 14px;
            color: #999;
            margin-bottom: 30px;
            font-style: italic;
        }

        .legal-section h3 {
            font-size: 22px;
            color: #2c3e50;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .legal-section h4 {
            font-size: 18px;
            color: #1abc9c;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .legal-section p {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .legal-section ul,
        .legal-section ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .legal-section li {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .legal-section strong {
            color: #2c3e50;
        }

        .contact-box {
            background: #f8f9fa;
            border-left: 4px solid #1abc9c;
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }

        .contact-box h4 {
            margin-top: 0;
            color: #2c3e50;
        }

        .contact-box p {
            margin-bottom: 5px;
        }

        /* Footer */
        footer {
            background: #1a252f;
            color: white;
            padding: 40px 50px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        footer h4 {
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        footer p,
        footer a {
            font-size: 12px;
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
        }

        footer a:hover {
            color: #1abc9c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icons a {
            width: 35px;
            height: 35px;
            background: #1abc9c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            transition: background 0.3s;
        }

        .social-icons a:hover {
            background: #16a085;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            color: #1abc9c;
            transition: color 0.3s;
        }

        .location-link:hover {
            color: #16a085;
        }

        @media (max-width: 968px) {
            header {
                flex-direction: column;
                padding: 15px;
            }

            nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                margin-top: 15px;
            }

            .hero-legal h1 {
                font-size: 32px;
            }

            .legal-nav {
                padding: 15px 20px;
            }

            .legal-section {
                padding: 30px 20px;
            }

            footer {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}