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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.icon-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-link:hover {
    transform: translateY(-8px);
}

.app-icon {
    width: 150px;
    height: 150px;
    border-radius: 33px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 20, 40, 0.4);
    transition: box-shadow 0.3s ease;
    display: block;
}

.icon-link:hover .app-icon {
    box-shadow: 0 12px 24px rgba(0, 20, 40, 0.45);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #6e6e73;
}

.button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #0071e3;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.2s;
    margin: 0.5rem;
}

.button:hover {
    background: #0077ed;
}

footer {
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #0071e3;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    color: #6e6e73;
    font-size: 0.875rem;
}

.copyright a {
    color: #6e6e73;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.privacy-content {
    max-width: 600px;
    margin: 0 auto;
}

.privacy-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #1d1d1f;
}
