/* Privacy Policy CSS - KLEAR */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;900&display=swap');

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

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

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

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

.brand-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFB300;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.update-date {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    font-size: 0.9em;
}

h2 {
    color: #FFB300;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

h3 {
    color: #555;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

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

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

li {
    margin-bottom: 10px;
}

strong {
    color: #FFB300;
}

.permission-box {
    background-color: #FFF8E1;
    border-left: 4px solid #FFB300;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.contact-box {
    background-color: #FFF8E1;
    border: 2px solid #FFB300;
    padding: 20px;
    margin-top: 30px;
    border-radius: 6px;
    text-align: center;
}

.contact-box h3 {
    color: #FFB300;
    margin-top: 0;
}

a {
    color: #FFB300;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

thead tr {
    background-color: #FFB300;
    color: #212121;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.3em;
    }
}
