/* 
* Privacy Policy CSS Styles
* Safiri by Citrus
* Created: March 2025
*/

/* ===== Reset and Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #1A73E8;
    transition: color 0.3s ease;
}

a:hover {
    color: #0e5fc1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== Header Styles ===== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 48px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
    padding: 8px 0;
    position: relative;
}

.nav-list li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #1A73E8;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-list li a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1A73E8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0e5fc1;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #1A73E8;
    color: #1A73E8;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1A73E8;
    color: #fff;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #1A73E8 0%, #4285F4 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.policy-metadata {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.metadata-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metadata-item .label {
    font-weight: 600;
}

.metadata-item .value {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
}

/* ===== Policy Navigation ===== */
.policy-navigation {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: sticky;
    top: 79px;
    z-index: 900;
}

.policy-nav-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.policy-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.policy-nav-item:hover, .policy-nav-item.active {
    background-color: #1A73E8;
    color: #fff;
}

.policy-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.policy-title {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Policy Content ===== */
.policy-content {
    padding: 40px 0 60px;
}

.policy-section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.section-number {
    background-color: #1A73E8;
    color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.section-header h2 {
    margin-bottom: 0;
    font-weight: 700;
    color: #1A73E8;
}

/* Introduction section */
.key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.key-point {
    flex: 1 1 calc(50% - 15px);
    display: flex;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.point-icon {
    font-size: 2rem;
    color: #1A73E8;
}

.point-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Definitions section */
.definition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.definition-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.definition-icon {
    color: #1A73E8;
    font-size: 1.5rem;
}

.definition-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Data Collection section */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.data-category {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.category-icon {
    color: #1A73E8;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.category-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.collection-note {
    background-color: rgba(26, 115, 232, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1A73E8;
}

/* Legal Basis section */
.legal-basis-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.legal-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.legal-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Purpose & Use section */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.purpose-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
}

.purpose-icon {
    color: #1A73E8;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.purpose-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Data Storage & Security section */
.storage-security-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.storage-section, .security-section {
    flex: 1 1 300px;
}

.section-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

.security-measures {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-measure {
    display: flex;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.measure-icon {
    color: #1A73E8;
    font-size: 1.3rem;
}

.measure-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Data Sharing section */
.sharing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.sharing-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.sharing-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

.sharing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* User Rights section */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.right-icon {
    color: #1A73E8;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.right-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.rights-note {
    background-color: rgba(26, 115, 232, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #1A73E8;
}

/* Cookies section */
.cookies-container {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cookies-info, .cookies-management {
    flex: 1 1 45%;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
}

.cookies-icon, .management-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

.management-options {
    margin-top: 15px;
    list-style-type: disc;
    padding-left: 20px;
}

.management-options li {
    margin-bottom: 8px;
}

/* Data Breach section */
.breach-process {
    margin-top: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.step-icon {
    color: #1A73E8;
    font-size: 1.8rem;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Policy Updates section */
.updates-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.update-section {
    flex: 1 1 45%;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
}

.update-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Contact Information section */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    color: #1A73E8;
    font-size: 1.8rem;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.escalation-process {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.escalation-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Governing Law section */
.law-jurisdiction {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.law-section, .jurisdiction-section {
    flex: 1 1 45%;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.law-icon, .jurisdiction-icon {
    color: #1A73E8;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Acceptance Statement */
.acceptance-statement {
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border-left: 4px solid #4CAF50;
    margin-top: 40px;
}

/* ===== CTA Section ===== */
.get-started {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin-top: 40px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== Footer Styles ===== */
.site-footer {
    background-color: #1d2b3a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    color: #FFC107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
}

.footer-links li a.active {
    color: #FFC107;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FFC107;
}

.website-link a {
    color: #ccc;
    transition: color 0.3s ease;
}

.website-link a:hover {
    color: #FFC107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .key-point {
        flex: 1 1 100%;
    }
    
    .contact-method {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .policy-metadata {
        flex-direction: column;
        gap: 15px;
    }
    
    .storage-security-container, 
    .law-jurisdiction, 
    .updates-container,
    .cookies-container {
        flex-direction: column;
    }
    
    .contact-method {
        flex: 1 1 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .policy-navigation {
        overflow-x: auto;
        white-space: nowrap;
        padding: 15px 0;
    }
    
    .policy-nav-container {
        width: max-content;
    }
    
    .policy-section {
        padding: 20px;
    }
}