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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-container {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #333333;
    background-color: #121212;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-button {
    display: flex;
    align-items: center;
    padding: 8px;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #333333;
}

.back-button .material-icons {
    font-size: 24px;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-left: 16px;
}

.scroll-view {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.form-section {
    margin-top: 20px;
}

.form-content {
    background-color: #1E1E1E;
    padding: 16px;
    border-radius: 12px;
    margin: 0 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    margin-top: 8px;
}

.about-label {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 16px;
    margin-bottom: 4px;
}

.about-sub-label {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 8px;
    margin-bottom: 4px;
}

.about-text {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.4;
    margin-bottom: 8px;
}

.about-text.bold {
    font-weight: 600;
    color: #FFFFFF;
}

.about-empty-line {
    height: 8px;
}

.link-text {
    color: #FFFFFF;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.link-text:hover {
    color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-content {
        margin: 0 8px;
        padding: 12px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .about-label {
        font-size: 18px;
    }
    
    .about-sub-label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px;
    }
    
    .form-content {
        margin: 0 4px;
        padding: 8px;
    }
}

/* Print Styles */
@media print {
    .header-container {
        position: static;
        border-bottom: none;
        margin-bottom: 20px;
    }
    
    .back-button {
        display: none;
    }
    
    .form-content {
        box-shadow: none;
        border: 1px solid #333333;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .about-text, .about-label, .about-sub-label {
        color: black;
    }
}