.dacf-form-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
}

.dacf-section {
    margin-bottom: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dacf-section h3 {
    margin-bottom: 30px;
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

.dacf-fields-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dacf-field {
    margin-bottom: 20px;
    flex: 1;
    min-width: 280px;
}

.dacf-field.full-width {
    flex: 1 1 100%;
}

.dacf-field.half-width {
    flex: 1 1 calc(50% - 10px);
}

@media (max-width: 768px) {
    .dacf-fields-row {
        flex-direction: column;
    }
    
    .dacf-field.half-width {
        flex: 1 1 100%;
    }
}

.dacf-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #333;
    font-size: 14px;
}

.dacf-field input[type="text"],
.dacf-field input[type="email"],
.dacf-field input[type="tel"],
.dacf-field input[type="date"],
.dacf-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.dacf-field input[type="text"]:focus,
.dacf-field input[type="email"]:focus,
.dacf-field input[type="tel"]:focus,
.dacf-field input[type="date"]:focus,
.dacf-field select:focus {
    outline: none;
    border-color: #0073aa;
    background-color: #fff;
}

.dacf-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    margin-top: 5px;
}

.dacf-field input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dacf-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.dacf-checkbox-label,
.dacf-radio-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
}

.dacf-checkbox-label input,
.dacf-radio-label input {
    margin-right: 10px;
    margin-top: 3px;
}

.dacf-payment-options {
    display: flex;
    gap: 20px;
}

.dacf-bank-info {
    background: #e9f5ff;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.dacf-bank-info h4 {
    margin-top: 0;
}

.dacf-bank-info p {
    margin-bottom: 10px;
}

.dacf-bank-info ul {
    margin: 10px 0;
    padding-left: 20px;
}

.dacf-bank-info ul li {
    margin-bottom: 5px;
}

.dacf-warning {
    color: #d9534f;
    font-weight: bold;
}

.dacf-submit-section {
    text-align: center;
    margin-top: 30px;
}

.dacf-submit-btn {
    background: #0073aa;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dacf-submit-btn:hover {
    background: #005a87;
}

.dacf-submit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.dacf-loading {
    margin-top: 20px;
    color: #666;
}

.dacf-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

.dacf-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    text-align: center;
}

.dacf-message.success h3 {
    margin: 0 0 10px 0;
    color: #155724;
    font-size: 24px;
}

.dacf-message.success p {
    margin: 5px 0;
    font-size: 16px;
}

.dacf-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.required {
    color: #e74c3c;
}