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

body {
    font-family: 'Garamond', 'Georgia', 'Baskerville', 'Times New Roman', serif;
    line-height: 1.6;
    color: #ffffff;
    min-height: 100vh;
    background-color: #000000;
    animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 700px;
    width: 100%;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    color: #ffffff;
    font-family: 'Garamond', 'Georgia', 'Baskerville', serif;
}

.tagline {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    font-style: italic;
    opacity: 0.9;
}

.contact {
    margin: 4rem 0;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.email {
    display: inline-block;
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 3rem;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
    background: transparent;
    letter-spacing: 0.1em;
    font-weight: 400;
    font-family: 'Garamond', 'Georgia', 'Baskerville', serif;
}

.email:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.footer {
    margin-top: 5rem;
}

.privacy-link,
.back-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

.privacy-link:hover,
.back-link:hover {
    opacity: 1;
}

/* Privacy page specific styles */
.privacy-page {
    text-align: left;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.privacy-content {
    color: #ffffff;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.privacy-page section {
    margin-bottom: 2rem;
}

.privacy-page h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.privacy-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.privacy-page .email {
    font-size: 1rem;
    padding: 0.7rem 2rem;
}

.privacy-page .footer {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .email {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .privacy-page {
        padding: 2rem;
    }

    .privacy-page h1 {
        font-size: 2.2rem;
    }

    .privacy-page h2 {
        font-size: 1.5rem;
    }
}

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

    .logo {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.05em;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .email {
        font-size: 0.95rem;
        padding: 0.8rem 1.8rem;
    }

    .privacy-page {
        padding: 1.5rem;
    }

    .privacy-page h1 {
        font-size: 1.8rem;
    }
}
