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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-color: #DFD9CD;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

}

.background-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    overflow: hidden;
    margin-bottom: 40px;
}

.background-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Maintains aspect ratio, no stretching */
}

.content {
    text-align: center;
    max-width: 600px;
}

.coming-soon {
    font-size: clamp(2rem, 8vw, 5rem); /* Responsive font size */
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
}
.description {
    font-size: clamp(1rem, 3vw, 1.125rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 30px;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-container header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.privacy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.privacy-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.privacy-container h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #444;
}

.privacy-container section {
    margin-bottom: 30px;
}

.privacy-container p {
    margin-bottom: 15px;
}

.privacy-container ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.privacy-container ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.privacy-container ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #666;
    font-weight: bold;
}

.privacy-container ul ul {
    margin-top: 10px;
    margin-left: 20px;
}

.privacy-container ul ul li::before {
    content: "◦";
}

.privacy-container strong {
    color: #1a1a1a;
    font-weight: 600;
}

.privacy-container a {
    color: #0066cc;
    text-decoration: none;
}

.privacy-container a:hover {
    text-decoration: underline;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    body {
        padding: 30px 15px;
    }
    .background-container {
        margin-bottom: 30px;
    }
    .background-image {
        max-height: 50vh;
    }
    .content {
        max-width: 100%;
        padding: 15px;
    }
    .coming-soon {
        letter-spacing: 0.05em;
        margin-bottom: 20px;
    }
    .description {
        margin-bottom: 25px;
    }
}