/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    color: #0d6efd;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-button i {
    margin-right: 8px;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.1));
    padding: 4rem 0;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.privacy-hero h1 {
    font-weight: 700;
    color: #0d6efd;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Quick Links */
.quick-links {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.link-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.link-container a {
    color: #0d6efd;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.link-container a:hover {
    background: #0d6efd;
    color: #fff;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header i {
    font-size: 2rem;
    color: #0d6efd;
    margin-right: 1rem;
}

.content-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.info-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.info-item ul {
    list-style: none;
    padding: 0;
}

.info-item li {
    margin-bottom: 0.5rem;
}

/* Use Cases */
.use-cases {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.use-case i {
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Sharing Grid */
.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sharing-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.sharing-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.security-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.security-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

/* Rights List */
.rights-list {
    display: grid;
    gap: 1.5rem;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

.right-item i {
    font-size: 1.5rem;
    color: #0d6efd;
}

/* Cookies Section */
.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-type {
    padding: 1.5rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
    text-align: center;
}

.cookie-control {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 10px;
}

/* Alert Box */
.alert-box {
    background: rgba(255, 193, 7, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-box i {
    font-size: 1.5rem;
    color: #ffc107;
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 2rem 0;
    }

    .link-container {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .use-case {
        flex-direction: column;
        text-align: center;
    }

    .right-item {
        flex-direction: column;
        text-align: center;
    }

    .right-item i {
        margin-bottom: 1rem;
    }
} 