        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #2563eb;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #1e3a8a;
        }

        /* Page Header */
        .page-header {
            background-color: #1e3a8a;
            color: white;
            padding: 150px 0;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Privacy Notice Content */
        .privacy-content {
            padding: 50px 0;
            background-color: #ffffff;
        }

        .privacy-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            max-width: 1200px;
        }

        .card-header {
            padding: 2.5rem !important;
            position: relative;
        }

        .bg-gradient-info {
            background: linear-gradient(195deg, #49a3f1, #1A73E8);
        }

        .card-body {
            padding: 2.5rem !important;
            padding-top: 0 !important;
        }

        .text-white {
            color: #fff !important;
        }

        .text-dark {
            color: #344767 !important;
        }

        .opacity-8 {
            opacity: 0.8 !important;
        }

        .mb-0 {
            margin-bottom: 0 !important;
        }

        .mt-2 {
            margin-top: 0.5rem !important;
        }

        .mt-5 {
            margin-top: 3rem !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
        }

        .fs14 {
            font-size: 14px !important;
        }

        .fs24 {
            font-size: 24px !important;
        }

        .fw6 {
            font-weight: 600 !important;
        }

        .cspt {
            cursor: pointer;
        }

        .privacy-content ul {
            list-style: disc;
            margin-left: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-content p {
            margin-bottom: 1rem;
        }

        .privacy-content strong {
            font-weight: 600;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .page-header {
                padding: 100px 0 50px;
            }

            .contact-info {
                display: none;
            }

            .top-bar-content {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            
            .page-header {
                padding: 80px 0 50px;
            }

            .action-buttons {
                display: none;
            }
        }