.custom-contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        font-family: 'Sprintura', sans-serif !important;
    }

    /* Form Group */
    .custom-contact-form .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Labels */
    .custom-contact-form label {
        font-size: 14px;
        font-weight: 500;
        font-style: italic;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #ffffff;
    }

    /* Inputs + Textarea */
    .custom-contact-form input,
    .custom-contact-form textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        padding: 14px 20px;
        font-size: 15px;
        outline: none;
        font-family: 'Sora', sans-serif;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-sizing: border-box;
    }

    /* Rounded Inputs */
    .custom-contact-form input {
        border-radius: 999px;
    }

    /* Rounded Textarea */
    .custom-contact-form textarea {
        border-radius: 20px;
        resize: none;
        max-height: 100px;
    }

    /* Placeholder */
    .custom-contact-form input::placeholder,
    .custom-contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    /* Focus Effect */
    .custom-contact-form input:focus,
    .custom-contact-form textarea:focus {
        border-color: rgba(59, 130, 246, 0.7);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
    }

    /* Submit Button */
    .custom-contact-form .wpcf7-submit {
        width: 100%;
        border: none;
        border-radius: 999px;
        background: #011CA7;
        color: #ffffff;
        padding: 15px 25px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid #ffffff;
        font-family: 'Sora', sans-serif !important;
    }

    /* Button Hover */
    .custom-contact-form .wpcf7-submit:hover {
        background: #3b82f6;
        box-shadow: 0 4px 28px rgba(59, 130, 246, 0.7);
    }

    /* CF7 Response Message */
    .custom-contact-form .wpcf7-response-output {
        margin: 15px 0 0;
        padding: 12px;
        border-radius: 12px;
        color: #ffffff;
    }

    /* Error Messages */
    .custom-contact-form .wpcf7-not-valid-tip {
        font-size: 13px;
        margin-top: 5px;
        color: #ffb3b3;
    }

    /* Remove Extra Margin */
    .custom-contact-form p {
        margin: 0;
    }

    .wysiwyg-content p {
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .wysiwyg-content p:last-child {
        margin-bottom: 0;
    }

    /* content wysiwyg */
    .custom-content {
        @apply font-sora text-[#1A1A1A];
    }

    .custom-content p {
        @apply text-[16px] leading-[1.7] mb-5;
    }

    .custom-content strong,
    .custom-content b {
        @apply font-semibold;
    }

    /* Unordered list */
    .custom-content ul {
        @apply my-5 space-y-4;
    }

    .custom-content ul li {
        @apply relative pl-10 text-[16px] leading-[1.7];
    }

    .custom-content ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        width: 24px;
        height: 24px;
        background: url('/wp-content/uploads/check-icon.svg') no-repeat center;
        background-size: contain;
    }

    /* Ordered list */
    .custom-content ol {
        @apply list-decimal pl-6 my-5 space-y-3;
    }

    .custom-content ol li {
        @apply text-[16px] leading-[1.7];
    }

    /* Optional links */
    .custom-content a {
        @apply underline font-medium;
    }


    .custom-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0px 2px 0px;
}

.custom-content ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size:19px;
}

.custom-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 24px;
    height: 24px;
    background: url('https://auh.webdemoview.com/wp-content/uploads/2026/06/Layer_x0020_1.svg') no-repeat center;
    background-size: contain;
}
.custom-content p{
   padding: 0px 0px 5px 0px;
   font-size:19px!important;
}
.custom-content p strong{
    font-size:20px;
    /* padding-top:10px; */
}