.elementor-1409 .elementor-element.elementor-element-fb8a65b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for container, class: .elementor-element-fb8a65b */<style>
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background-color: #f9f9f9;
        color: #333;
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

   
    /* Main content */
    .main-content {
        display: flex;
        flex-wrap: wrap;
        margin: 40px 0;
        gap: 30px;
    }

    .form-section {
        flex: 2;
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .info-section {
        flex: 1;
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .section-title {
        color: #1a1a2e;
        border-bottom: 2px solid #d4af37;
        padding-bottom: 10px;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }

    /* Form styles */
    .form-group {
        margin-bottom: 20px;
    }

    .form-row {
        display: flex;
        gap: 20px;
    }

    .form-row .form-group {
        flex: 1;
    }

    label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .required::after {
        content: " *";
        color: #e74c3c;
    }

    input, select, textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border 0.3s;
    }

    input:focus, select:focus, textarea:focus {
        border-color: #d4af37;
        outline: none;
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }

    .upload-area {
        border: 2px dashed #ddd;
        border-radius: 5px;
        padding: 30px;
        text-align: center;
        cursor: pointer;
        transition: border 0.3s;
    }

    .upload-area:hover {
        border-color: #d4af37;
    }

    .upload-area i {
        font-size: 2.5rem;
        color: #d4af37;
        margin-bottom: 15px;
    }

    .upload-area p {
        margin-bottom: 10px;
    }

    .upload-area span {
        font-size: 0.9rem;
        color: #777;
    }

    #file-list {
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .file-item {
        display: flex;
        justify-content: space-between;
        padding: 8px;
        background-color: #f5f5f5;
        border-radius: 3px;
        margin-bottom: 5px;
    }

    .file-item .remove-file {
        color: #e74c3c;
        cursor: pointer;
    }

    /* Button */
    .submit-btn {
        background-color: #d4af37;
        color: #1a1a2e;
        border: none;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 100%;
        margin-top: 10px;
    }

    .submit-btn:hover {
        background-color: #c19b2a;
    }

    /* Info section */
    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .benefit-icon {
        background-color: #f8f0e3;
        color: #d4af37;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .benefit-icon i {
        font-size: 1.3rem;
    }

    .benefit-content h3 {
        color: #1a1a2e;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }

    .contact-details {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .contact-details p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

    .contact-details i {
        color: #d4af37;
        margin-right: 10px;
        width: 20px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .main-content {
            flex-direction: column;
        }
        
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        
        .hero h2 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: 50px 0;
        }
        
        .hero h2 {
            font-size: 1.8rem;
        }
    }
</style>/* End custom CSS */