    .smarty-form-container {
        font-family: 'Roboto', Arial, sans-serif;
        max-width: 800px;
        margin: 40px auto;
        background: #ffffff;
        padding: 32px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        position: relative;
        z-index: 1;
    }
    .smarty-form-container h2 {
        text-align: center;
        color: #1a2a44;
        font-size: 2rem;
        margin: 0 0 28px 0;
        font-weight: 700;
    }
    .smarty-form-container form {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .smarty-form-container .form-field {
        flex: 1 1 calc(50% - 10px);
        display: flex;
        flex-direction: column;
    }
    .smarty-form-container label.input-label {
        font-weight: 600;
        color: #1a2a44;
        margin-bottom: 8px;
        font-size: 1rem;
    }
    .smarty-form-container input,
    .smarty-form-container select,
    .smarty-form-container textarea {
        padding: 14px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 1.1rem;
        background: #f8fafc;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }
    .smarty-form-container input:focus,
    .smarty-form-container select:focus,
    .smarty-form-container textarea:focus {
        border-color: #2563eb;
        box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
        outline: none;
        background: #fff;
    }
    .smarty-form-container textarea { min-height: 120px; resize: vertical; }
    .smarty-form-container button {
        flex: 1 1 100%;
        padding: 16px;
        background: linear-gradient(135deg, #2563eb, #1e40af);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 1.2rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .smarty-form-container button:hover {
        background: linear-gradient(135deg, #1e40af, #1e3a8a);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    .smarty-form-container .checkbox-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
        margin: 10px 0;
    }
    .smarty-form-container .checkbox-grid label {
        display: flex;
        align-items: center;
        font-size: 1rem;
        color: #1a2a44;
        cursor: pointer;
    }
    .smarty-form-container .checkbox-grid input[type="checkbox"] {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        accent-color: #2563eb;
    }
    .recaptcha-container {
        margin: 20px 0;
        display: flex;
        justify-content: center;
    }
    #form-success {
        display: none;
        text-align: center;
        background: #f0fdf4;
        color: #16a34a;
        padding: 16px;
        border-radius: 10px;
        border: 1px solid #bbf7d0;
        margin-top: 20px;
        font-weight: 600;
    }
    @media (max-width: 768px) {
        .smarty-form-container .form-field { flex: 1 1 100%; }
        .smarty-form-container h2 { font-size: 1.7rem; }
        .smarty-form-container button { font-size: 1.1rem; }
    }