body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #242527;
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header img {
    width: 100px;
    height: 100px;
    vertical-align: middle;
    margin-right: 15px;
    border-radius: 12px;
}

.header h1 {
    display: inline;
    font-size: 2em;
    vertical-align: middle;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
}

.privacy-container {
    background-color: #121212;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 1.8em;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.app-card {
    background-color: #121212;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.app-card img.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 15px;
    object-fit: cover;
}

.app-card h3 {
    font-size: 1.4em;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.app-card p.app-description {
    font-size: 0.95em;
    color: #bbbbbb;
    margin-bottom: 15px;
    flex-grow: 1;
}

.app-card a.store-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.app-card a.store-button:hover {
    background-color: #0056b3;
}

.privacy-container h2 {
    text-align: center;
    color: #fff;
}

.privacy-container h3 {
    color: #fff;
    margin-top: 20px;
}

.privacy-container p,
.privacy-container ul {
    line-height: 1.6;
    color: #bbbbbb;
}

.privacy-container a {
    color: #007bff;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 25px 0;
    margin-top: auto;
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    font-size: 0.9em;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}