body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.welcome-section {
    text-align: center;
    padding: 40px 20px;
}

.options {
    margin-top: 30px;
}

.btn {
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.terms-box {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.confirmation-box {
    text-align: center;
    padding: 30px;
}

.application-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.next-steps {
    text-align: left;
    margin: 20px 0;
}

.badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-danger {
    background-color: #dc3545;
    color: white;
}

.document-preview {
    margin-bottom: 10px;
}

.tab-content {
    padding: 20px 0;
}

.personal-details p {
    margin-bottom: 10px;
}