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

body {
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    background-color: #f0ebf8;
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
}

.banner {
    width: 100%;
    border-radius: 8px 8px 0 0;
    display: block;
}

.form-header {
    background: #fff;
    border-radius: 8px;
    border-top: 10px solid #ab68ff;
    padding: 24px;
    margin-bottom: 12px;
}

.form-header h1 {
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 14px;
    color: #202124;
    line-height: 1.6;
    margin-bottom: 12px;
}

.required-note {
    font-size: 14px;
    color: #d93025;
    margin-top: 16px;
}

.form-section {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 12px;
    border-left: 4px solid transparent;
}

.form-section:hover {
    border-left-color: #ab68ff;
}

.section-title {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.section-description {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 24px;
    font-style: italic;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #202124;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group label .required {
    color: #d93025;
    margin-left: 4px;
}

.form-group .description {
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #dadce0;
    outline: none;
    background: transparent;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    border-bottom: 2px solid #ab68ff;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.file-upload {
    border: 1px dashed #dadce0;
    border-radius: 4px;
    padding: 16px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: background 0.2s;
}

.file-upload:hover {
    background: #f0f0f0;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    background: #fff;
    color: #1a73e8;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.file-upload-btn:hover {
    background: #f8f9fa;
}

.file-upload-info {
    font-size: 12px;
    color: #5f6368;
    margin-top: 8px;
}

.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ab68ff;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 14px;
    color: #202124;
    cursor: pointer;
    line-height: 1.5;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ab68ff;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #9850e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #ab68ff;
    border: none;
}

.btn-secondary:hover {
    background: rgba(171, 104, 255, 0.08);
}

.clear-form {
    color: #ab68ff;
    font-size: 14px;
    text-decoration: none;
}

.clear-form:hover {
    text-decoration: underline;
}

.progress-bar {
    background: #e0e0e0;
    height: 10px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.progress {
    background: #ab68ff;
    height: 100%;
    transition: width 0.3s ease;
}

/* Acceptance page styles */
.acceptance-container {
    text-align: center;
    padding: 60px 24px;
}

.acceptance-container h1 {
    font-size: 36px;
    color: #202124;
    margin-bottom: 24px;
}

.acceptance-container p {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.6;
    margin-bottom: 16px;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #34a853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.checkmark svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.footer-note {
    font-size: 12px;
    color: #5f6368;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}
