  /* <style> */
        :root {
            --primary-color: #0a2c5c;
            --secondary-color: #c9a96e;
            --accent-color: #1e88e5;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #6c757d;
            --border-radius: 8px;
            --box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-text);
            line-height: 1.7;
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        /* Breadcrumb with Microdata */
        .breadcrumb-nav {
            background-color: var(--light-bg);
            padding: 1rem 0;
            margin-bottom: 0;
        }

        .breadcrumb {
            background: transparent;
            margin-bottom: 0;
            padding: 0;
        }

        .breadcrumb-item a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-item a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Hero Section with Semantic Markup */
        /* .privacy-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(10, 44, 92, 0.85), rgba(10, 44, 92, 0.9)), 
                        url('https://danubeproperties.com/wp-content/uploads/2024/03/1000062815.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 4rem;
        } */

        .privacy-hero {
    position: relative;
    height: 530px;
    background: linear-gradient(rgba(10, 44, 92, 0.85), rgba(10, 44, 92, 0.9)), url(https://danubeproperties.com/wp-content/uploads/2024/03/1000062815.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
    flex-direction: column-reverse;
}

        .privacy-hero-content {
            max-width: 800px;
            padding: 2rem;
        }

        .privacy-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: white;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .privacy-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content Container */
        .privacy-container {
            max-width: 1100px;
            margin: 0 auto 5rem;
            padding: 0 2rem;
        }

        /* Article Content */
        article {
            background: white;
            border-radius: var(--border-radius);
            padding: 3.5rem;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        /* Time Element */
        .last-updated-time {
            display: block;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--light-text);
            font-size: 0.9rem;
        }

        /* Introduction with Highlight */
        .privacy-intro {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-left: 4px solid var(--secondary-color);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
        }

        .privacy-intro p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        /* Semantic Sections */
        .privacy-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eaeaea;
            scroll-margin-top: 120px; /* For anchor link offset */
        }

        .privacy-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .privacy-section h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            position: relative;
            padding-bottom: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .privacy-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .privacy-section h3 {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--dark-text);
        }

        .privacy-section p {
            margin-bottom: 1.2rem;
            color: var(--dark-text);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* SEO-Optimized Lists */
        .info-list {
            list-style-type: none;
            padding-left: 0;
            margin: 1.5rem 0;
        }

        .info-list li {
            padding: 0.75rem 0 0.75rem 2rem;
            position: relative;
            border-bottom: 1px dashed #eee;
            line-height: 1.6;
        }

        .info-list li:last-child {
            border-bottom: none;
        }

        .info-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0.75rem;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* Table of Contents for SEO */
        .toc-container {
            background: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2.5rem 0;
            border-left: 4px solid var(--primary-color);
        }

        .toc-container h4 {
            color: var(--primary-color);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .toc-container h4 i {
            color: var(--secondary-color);
        }

        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }

        .toc-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #ddd;
        }

        .toc-list li:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .toc-list a {
            color: var(--dark-text);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
        }

        .toc-list a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .toc-list a i {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        /* FAQ Section for Featured Snippets */
        .faq-section {
            background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid #e1e8f0;
        }

        .faq-section h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary-color);
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #d1e0ff;
            padding-bottom: 1.5rem;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .faq-question {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            color: var(--dark-text);
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer.active {
            max-height: 500px;
        }

        /* SEO-Friendly Call-to-Action */
        .seo-cta {
            background: linear-gradient(135deg, var(--primary-color), #1a3a6c);
            color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin-top: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .seo-cta:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
        }

        .seo-cta h3 {
            color: white;
            margin-bottom: 1rem;
        }

        .seo-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Related Links for SEO */
        .related-links {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--light-bg);
        }

        .related-links h4 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .related-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .related-link-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: var(--transition);
            text-decoration: none;
            color: var(--dark-text);
            display: block;
        }

        .related-link-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
            color: var(--primary-color);
        }

        .related-link-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            display: block;
        }

        /* Print Button */
        .print-section {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(10, 44, 92, 0.3);
            transition: var(--transition);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }

        .active {
    color: rgb(220 192 101)!important;
    font-weight:600;
}

        /* Responsive Design */
        @media (max-width: 992px) {
            .privacy-hero h1 {
                font-size: 2.8rem;
            }
            
            article {
                padding: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            /* .privacy-hero {
                height: 300px;
                margin-bottom: 3rem;
            } */
            
            .privacy-hero h1 {
                font-size: 2.2rem;
            }
            
            .privacy-container {
                padding: 0 1rem;
            }
            
            article {
                padding: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .btn {
                width: 100%;
            }
            .privacy-hero {
                height:550px;
            }
        }

        @media (max-width: 576px) {
            
            
            .privacy-hero h1 {
                font-size: 1.8rem;
            }
            
            article {
                padding: 1.5rem;
            }
            
            .faq-section {
                padding: 1.5rem;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        /* Print Styles for SEO */
        @media print {
            .breadcrumb-nav, .back-to-top, .seo-cta, .related-links {
                display: none;
            }
            
            .privacy-container {
                margin: 0;
                padding: 0;
            }
            
            article {
                box-shadow: none;
                padding: 0;
            }
            
            .privacy-hero {
                color: black;
                background: white !important;
                height: auto;
                margin-bottom: 2rem;
            }
            
            .privacy-hero h1 {
                color: black;
            }
            
            a {
                text-decoration: none;
                color: black;
            }
            
            .toc-container {
                page-break-inside: avoid;
            }
        }

        /* Performance Optimization */
        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lazy-load.loaded {
            opacity: 1;
        }



    /* </style> */