<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Background decorative elements */
.bg-decoration-privacy {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.circle-large-privacy {
    width: 300px;
    height: 300px;
    background: rgba(134, 182, 191, 0.3);
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -100px;
}

.circle-medium-privacy {
    width: 200px;
    height: 200px;
    background: rgba(134, 182, 191, 0.2);
    border-radius: 50%;
    position: absolute;
    bottom: -50px;
    left: -50px;
}

.dots-pattern-privacy {
    position: absolute;
    width: 100px;
    height: 100px;
}

.dots-top-right-privacy {
    top: 20px;
    right: 20px;
}

.dots-bottom-left-privacy {
    bottom: 20px;
    left: 20px;
}

.dot-privacy {
    width: 4px;
    height: 4px;
    background: rgba(52, 73, 85, 0.4);
    border-radius: 50%;
    position: absolute;
}

/* Main container */
.main-container-privacy {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-card-privacy {
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #084951;
}

/* Tab navigation */
.tab-navigation-privacy {
    background: #084951;
    display: flex;
    position: relative;
}

.tab-item-privacy {
    flex: 1;
    padding: 1.2rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    background: none;
}

.tab-item-privacy:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-item-privacy.active-privacy {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.tab-item-privacy.active-privacy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 7px;
    background: white;
    border-radius: 2px;
}

.tab-divider-privacy {
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    align-self: stretch;
}

/* Content area */
.content-area-privacy {
    padding: 2.5rem;
    background: transparent;
    position: relative;
}

.content-title-privacy {
    color: #6c757d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.content-text-privacy {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

.tab-content-privacy {
    display: block;
}

.tab-content-privacy.hidden-privacy {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container-privacy {
        padding: 1rem 0.5rem;
    }

    .tab-item-privacy {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }

    .content-area-privacy {
        padding: 1.5rem;
    }

    .content-title-privacy {
        font-size: 1.2rem;
    }

    .content-text-privacy {
        font-size: 0.95rem;
        text-align: left;
    }

    .circle-large-privacy {
        width: 200px;
        height: 200px;
    }

    .circle-medium-privacy {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .tab-item-privacy {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .content-area-privacy {
        padding: 1rem;
    }

    .content-title-privacy {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .content-text-privacy {
        font-size: 0.9rem;
    }
}

.document-container {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.document-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.section-title {
    color: #34495e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content {
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.subsection-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.subsection-list li {
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #007bff;
}

.highlight-text {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .document-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .document-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .subsection-list {
        margin-left: 1rem;
    }
}

/*css privacy content*/

.document-title-privacy {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.section-title-privacy {
    color: #34495e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.section-content-privacy {
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.subsection-list-privacy {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.subsection-list-privacy li {
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-info-privacy {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #007bff;
}

.highlight-text-privacy {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .document-container-privacy {
        margin: 1rem;
        padding: 1.5rem;
    }

    .document-title-privacy {
        font-size: 1.5rem;
    }

    .section-title-privacy {
        font-size: 1.1rem;
    }

    .subsection-list-privacy {
        margin-left: 1rem;
    }
}</pre></body></html>