* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    padding: 20px;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
    color: #2563eb;
    margin-bottom: 30px;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 10px;
}
h2 {
    color: #1e40af;
    margin-top: 30px;
    margin-bottom: 15px;
}
h3 {
    color: #3b82f6;
    margin-top: 20px;
    margin-bottom: 10px;
}
p, li {
    margin-bottom: 15px;
    text-align: justify;
}
ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}
.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.back-link:hover {
    text-decoration: underline;
}
.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}
.important {
    background: #fef3c7;
    padding: 15px;
    border-left: 4px solid #f59e0b;
    margin: 20px 0;
}
.form-template {
    background: #f0f9ff;
    padding: 15px;
    border-left: 4px solid #2563eb;
    margin: 15px 0;
    font-size: 0.95em;
}
.form-template p {
    margin-bottom: 0;
}
