.cf-de4bf8cc-container {
    --cf-primary: #239322;
    --cf-secondary: #18273A;
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: sans-serif;
}
.cf-de4bf8cc-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeUp 0.7s ease forwards;
}
.cf-de4bf8cc-label {
    font-size: 14px;
    font-weight: bold;
    color: var(--cf-primary);
    letter-spacing: 2px;
}
.cf-de4bf8cc-heading {
    font-size: 42px;
    color: var(--cf-secondary);
    margin: 15px 0;
}
.cf-de4bf8cc-heading .highlight {
    color: var(--cf-primary);
}
.cf-de4bf8cc-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.cf-de4bf8cc-left {
    flex: 0 0 40%;
    background: var(--cf-secondary);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
    animation: slideRight 0.8s ease forwards;
}
.cf-de4bf8cc-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    animation: slideLeft 0.8s ease forwards;
}
.cf-de4bf8cc-form input, .cf-de4bf8cc-form select, .cf-de4bf8cc-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 18px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}
.cf-de4bf8cc-form input:focus, .cf-de4bf8cc-form textarea:focus {
    border-color: var(--cf-primary);
    box-shadow: 0 0 10px rgba(35,147,34,0.2);
}
.btn-submit {
    background: var(--cf-primary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #1b7a1a;
    transform: translateY(-4px);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@media (max-width: 991px) {
    .cf-de4bf8cc-left, .cf-de4bf8cc-right {
        flex: 1 1 100%;
    }
}