* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 800px;
}

.content {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
}

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

.description {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: left;
}

.description strong {
    color: #667eea;
    font-weight: 600;
}

nav {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

nav a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Privacy Policy Page Styles */
.privacy-content {
    text-align: left;
}

.privacy-content h2 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #555;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.privacy-content li {
    margin-bottom: 8px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    h1 {
        font-size: 2em;
    }

    .icon {
        width: 90px;
        height: 90px;
    }

    .description {
        font-size: 1em;
    }
}

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

    h1 {
        font-size: 1.75em;
    }

    .icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
}

