/* Privacy Policy Page Styles - SeemPrime */



.page-meta {
    position: relative;
    z-index: 2;
}

.last-updated {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Privacy Content */
.privacy-content {
    padding: 100px 0  ;
}

.privacy-sections {
    max-width: 100%;
}

.privacy-section {
    padding: 40px;
    background: #e9f5f4bd;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(5, 66, 57, 0.08);
    border: 1px solid rgba(5, 66, 57, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--h2), var(--color-btn));
    border-radius: 0 2px 2px 0;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(5, 66, 57, 0.12);
}

.privacy-section h2 {
    color: var(--h2);
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 13px;
}



.privacy-section h3 {
    color: var(--h2);
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 15px;
}

.privacy-section h4 {
    color: var(--h2);
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.privacy-section p {
    color: var(--p);
    font-size: 1rem;
    line-height: 1.8;
    padding-bottom: 20px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section ul li {
    color: var(--p);
    font-size: 1rem;
    line-height: 1.8;
    padding-bottom: 12px;
    padding-right: 25px;
    position: relative;
}

.privacy-section ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 50%;
    color: var(--h2);
    font-weight: bold;
    font-size: 1.1rem;
transform: translateY(-50%);
}

/* Info Types */
.info-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-type {
    background: rgba(212, 235, 232, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(5, 66, 57, 0.1);
}

.info-type h3 {
    color: var(--h2);
    padding-bottom: 20px;
    font-size: 1.3rem;
}

.info-type ul li {
    padding-bottom: 10px;
    padding-right: 20px;
}

/* Usage List */
.usage-list li,
.sharing-list li,
.rights-list li {
    background: rgba(212, 235, 232, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-right: 3px solid var(--h2);
    transition: all 0.3s ease;
    margin-bottom: 12px !important;
}

.usage-list li:hover,
.sharing-list li:hover,
.rights-list li:hover {
    background: rgba(212, 235, 232, 0.15);
    transform: translateX(-5px);
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.security-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(212, 235, 232, 0.1) 0%, rgba(5, 66, 57, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(5, 66, 57, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 66, 57, 0.1);
    background: #fff;
}

.security-item i {
    font-size: 2.5rem;
    color: var(--h2);
    padding-bottom: 15px;
}

.security-item h4 {
    color: var(--h2);
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.security-item p {
    color: var(--p);
    font-size: 0.9rem;
    margin: 0;
}

/* Cookies Types */
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    background: rgba(212, 235, 232, 0.08);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(5, 66, 57, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    background: rgba(212, 235, 232, 0.15);
    transform: scale(1.02);
}

.cookie-type h4 {
    color: var(--h2);
    padding-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-type p {
    color: var(--p);
    font-size: 0.9rem;
    margin: 0;
}

.cookies-note {
    background: rgba(5, 66, 57, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-right: 3px solid var(--h2);
    font-style: italic;
    margin-top: 20px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(212, 235, 232, 0.1) 0%, rgba(5, 66, 57, 0.05) 100%);
    border: 2px solid rgba(5, 66, 57, 0.1);
}

.contact-info-privacy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
 
/* Responsive Design */
@media (max-width: 768px) {
    
    .privacy-content {
        padding: 50px 0  ;
    }
  

    .privacy-section {
        padding: 25px;
        padding-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 17px;
    }

    .info-types,
    .security-measures,
    .cookies-types,
    .contact-info-privacy {
        grid-template-columns: 1fr;
    }

   

.privacy-section h3 {
    font-size: 16px;
}

.privacy-section h4 {
    font-size: 15px;
}

.privacy-section p {
    font-size: 14px;
}
}

@media (max-width: 480px) {
    .privacy-header {
        padding: 60px 0 40px;
    }

    

    .privacy-section {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .privacy-header {
        background: none !important;
        color: #000 !important;
    }

    .privacy-section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
 
}
  