.for-director {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.top-text {
    margin-bottom: 40px;
}

.top-text h1 {
	font-size: 44px;
    font-weight: 600;
    line-height: normal;
}

.top-text p {
    font-size: 22px;
    line-height: normal;
    max-width: 910px;
}

/* Сетка 3x2 */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: 30px;
}

.form-group {
    width: 32%;
	margin-bottom: 32px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
	display: block;
    margin-bottom: 8px;
    color: #353535;
    font-size: 16px;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
	width: 100%;
    padding: 20px 16px;
    border: 1px solid #E6E9F0;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    background: #FBFBFB;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

/* File attachment */
.file-attachment {
    margin: 30px 0 20px;
}

.file-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.file-label {
	display: inline-block;
    cursor: pointer;
    padding: 9px 24px;
    background-color: #F7F7F7;
    border-radius: 90px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #6FC727;
}

.file-label:hover {
    background-color: #e8e8e8;
    border-color: #3498db;
}

.file-remove {
    display: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
}

.file-remove:hover {
    background-color: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.file-hint {
	margin-top: 8px;
    font-size: 14px;
    color: #757575;
}

/* Checkbox */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-group.error .checkmark {
    border-color: #e74c3c !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    position: relative;
    padding-left: 30px;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #3498db;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #3498db;
    border-color: #3498db;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    line-height: 1.4;
    color: #333;
}

/* Submit button */
.submit-btn {
	background-color: #6FC727;
    color: white;
    border: none;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 401px;
}

.submit-btn:hover {
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-grid {
        gap: 0;
    }
    
    .form-group {
        width: 100%;
    }
}
/* Блок успешной отправки вместо формы */
.success-message-block {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    margin-top: 30px;
}
.success-icon {
    font-size: 64px;
    background: #2ecc71;
    color: white;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-weight: bold;
}
.success-message-block h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}
.success-message-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}
.write-again-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.write-again-btn:hover {
    background-color: #2980b9;
}