    :root {
        --primary-green: #22c55e;
        --dark-green: #15803d;
        --mandatory: #ef4444;
    }

    body {
        font-family: 'SolaimanLipi', sans-serif !important;
        margin: 0;
        padding: 0;
    }

    .page-wrapper {
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(-45deg, #ffffff, #f0fdf4, #dcfce7, #ffffff);
        background-size: 400% 400%;
        animation: gradientAnimation 10s ease infinite;
        display: flex;
        flex-direction: column;
        padding-top: 110px; 
        box-sizing: border-box;
    }

    @keyframes gradientAnimation {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .main-container {
        display: flex;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        flex-direction: row;
        flex-grow: 1;
        align-items: flex-start;
    }

    .image-section {
        flex: 0.9; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 50px;
    }

    .image-section img {
        max-width: 400px; 
        width: 100%;
        height: auto;
        border-radius: 25px;
        filter: drop-shadow(0 20px 30px rgba(34, 197, 94, 0.2));
    }

    .form-section {
        flex: 1.1;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 10px 50px 60px 50px;
    }

    .form-box {
        max-width: 550px;
        width: 100%;
    }

    .form-header { 
        margin-bottom: 35px;
    }

    .form-header h1.form-title {
        font-size: 40px;
        color: #166534;
        margin-bottom: 8px;
        font-weight: 800;
        line-height: 1.1;
    }

    .form-header .form-subtitle {
        font-size: 18px;
        color: #4b5563;
        font-weight: 500;
    }

    .service-badge { 
        display: inline-block; 
        font-size: 12px; 
        font-weight: 700; 
        padding: 5px 14px; 
        background: #eef2ff; 
        color: #4f46e5; 
        border-radius: 50px; 
        margin-bottom: 15px;
        border: 1px solid #e0e7ff;
    }

    .input-group { margin-bottom: 22px; }

    .input-group label {
        display: block;
        font-size: 17px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .input-group label::after {
        content: " *";
        color: var(--mandatory);
    }

    .input-group input, .input-group select {
        width: 100%;
        padding: 16px 22px;
        background: #ffffff;
        border: 2px solid #cbd5e1;
        border-radius: 14px;
        font-size: 16px;
        color: #000;
        outline: none;
        transition: all 0.3s ease;
        font-family: 'SolaimanLipi', sans-serif;
        box-sizing: border-box;
    }

    .input-group input:focus, .input-group select:focus {
        border-color: var(--primary-green);
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
    }

    .btn-submit {
        width: 100%;
        background: var(--primary-green);
        color: white;
        border: none;
        padding: 18px;
        border-radius: 14px;
        font-weight: 700;
        font-size: 21px;
        cursor: pointer;
        transition: all 0.4s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
        box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
    }

    .btn-submit:hover {
        background: var(--dark-green);
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(21, 128, 61, 0.3);
    }

    @media (max-width: 992px) {
        .page-wrapper { padding-top: 80px; }
        .main-container { flex-direction: column; align-items: center; }
        .image-section { display: none; }
        .form-section { padding: 30px 20px; width: 100%; }
        .form-header { text-align: center; }
    }