/* Privacy Policy Styles for DoneLog */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header {
    border-bottom: 3px solid #4CAF50;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.95em;
}

main {
    margin-bottom: 40px;
}

section {
    margin-bottom: 35px;
}

h2 {
    font-size: 1.8em;
    color: #34495e;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

h3 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #45a049;
    text-decoration: underline;
}

.contact-info {
    list-style: none;
    margin-left: 0;
}

.contact-info li {
    padding: 8px 0;
}

/* Privacy Highlights Section */
.summary-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.summary-box h2 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.privacy-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.highlight-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.highlight-item .icon {
    font-size: 1.5em;
    font-weight: bold;
    background-color: #4CAF50;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item p {
    margin: 0;
    text-align: left;
    font-size: 1.05em;
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 25px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    ul {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }

    .summary-box {
        padding: 20px;
    }

    .highlight-item {
        padding: 12px;
    }

    .highlight-item .icon {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        padding: 0;
    }

    .container {
        box-shadow: none;
        padding: 20px;
    }

    .summary-box {
        background: white;
        color: black;
        border: 2px solid #333;
    }

    .summary-box h2 {
        color: black;
    }

    .highlight-item {
        background-color: #f0f0f0;
    }

    .highlight-item p {
        color: black;
    }
}