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

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.last-updated {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 32px;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: #3a3a3a;
    margin-top: 24px;
    margin-bottom: 12px;
}

p, li {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 12px;
}

ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 24px;
}

.form-container {
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

label {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 4px;
}

input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s;
}

input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

button[type="submit"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

button[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .container {
        padding: 24px;
    }

    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.3em;
    }
}
