@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.top-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0px 2px 10px rgba(0,0,0,0.5));
}

main {
    width: 100%;
    max-width: 600px;
}

.privacy-main {
    max-width: 800px;
}

.card {
    background: #ffffff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #111;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

h2 {
    font-size: 1.25rem;
    color: #222;
    margin: 2rem 0 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

p, ul {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

ul {
    padding-left: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #333;
    padding: 0.75rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #888;
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #444;
}

.text-center {
    text-align: center;
}

@media (max-width: 600px) {
    .card {
        padding: 2rem 1.5rem;
    }
}
