* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0f0f0f;
    color: #e8e8e8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 32px;
}

header {
    margin-bottom: 48px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 24px;
}

h1 {
    font-size: 2.75em;
    margin-bottom: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.material-icons {
    font-size: inherit;
}

.last-updated {
    color: #999;
    font-size: 0.9375em;
    font-weight: 500;
}

h2 {
    font-size: 1.625em;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h2 .material-icons {
    font-size: 1.1em;
    color: #ffffff;
}

p {
    margin-bottom: 18px;
    color: #d0d0d0;
    font-size: 1.0625em;
    line-height: 1.8;
}

ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    color: #d0d0d0;
    font-size: 1.0625em;
    line-height: 1.7;
}

.section {
    margin-bottom: 40px;
}

footer {
    margin-top: 72px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
    color: #666;
    font-size: 0.9375em;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #ccc;
    text-decoration: underline;
}


/* Form Styles */
.warning-box {
    background-color: #2a1a1a;
    border: 2px solid #8b4513;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 40px;
}

.warning-box h2 {
    color: #ff9966;
    margin-top: 0;
}

.warning-box strong {
    color: #ffaa88;
}

.erasure-form {
    background-color: #1a1a1a;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9375em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #0f0f0f;
    border: 1px solid #333;
    border-radius: 6px;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #999;
    font-size: 0.875em;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    color: #d0d0d0;
    font-size: 1em;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.0625em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    margin-top: 32px;
}

.submit-btn:hover {
    background-color: #a0522d;
}

.submit-btn:active {
    background-color: #6b3410;
}

.submit-btn .material-icons {
    font-size: 1.2em;
}