

    .contact-form-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        box-sizing: border-box;

        br {
            display: none;
        }

        * {
            box-sizing: border-box;
        }

        /* Row Layouts */
        .row {
            width: 100%;
            position: relative;

            &.row1 p,
            &.row2 p,
            &.row3 p {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                width: 100%;
                max-width: 1060px;
                margin: 0;
            }

            &.row4 p,
            &.row5 p,
            &.row6 p {
                display: block;
                width: 100%;
                margin: 0;
            }

            &.row4 {
                margin-top: -40px;
            }
        }

        /* Fields & Labels styling */
        label {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 480px;
            margin: 0px;

            &>span:first-child {
                font-size: 16px;
                font-weight: 400;
                color: #000000;
                margin-bottom: 8px;
                text-transform: none;
                letter-spacing: 0.01em;
                display: inline-block;

                @media (max-width: 1024px) {
                    font-size: 13px;
                }
            }
        }

        /* Custom Bottom-bordered Fields */
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        select,
        textarea {
            border: none;
            border-bottom: 1px solid #000000;
            border-radius: 0;
            background-color: transparent;
            padding: 0;
            height: auto;
            color: #000000;
            font-size: 16px;
            font-weight: 400;
            width: 100%;
            box-shadow: none;
            outline: none;
            transition: border-color 0.3s ease;
            font-family: inherit;

            @media (max-width: 1024px) {
                font-size: 13px;
            }

            &:focus {
                border-bottom-color: #888888;
            }
        }

        textarea {
            min-height: 80px;
            height: 80px;
            resize: none;
        }

        .wpcf7-form-control-wrap {
            position: relative;
            display: block;
            width: 100%;
        }

        .wpcf7-not-valid-tip {
            position: absolute;
            right: 0;
            top: -24px;
            font-size: 10px;
            color: #ff0000;
            font-weight: 400;
            white-space: nowrap;

            @media (max-width: 1024px) {
                font-size: 8px;
            }
        }

        /* Attachment (File Upload) styling */
        label.file-label {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            width: fit-content;
            margin-top: 10px;
            position: static;

            @media (max-width: 1024px) {
                font-size: 8px;
            }

            span:not(.wpcf7-not-valid-tip):not(.file-name-display) {
                font-size: 16px;
                font-weight: 400;
                color: #000000;
                text-decoration: underline;
                margin: 0;
                white-space: nowrap;
                display: inline-block;

                @media (max-width: 1024px) {
                    font-size: 13px;
                }
            }

            .wpcf7-form-control-wrap {
                position: static;
                display: inline;
                width: auto;
            }

            .wpcf7-not-valid-tip {
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                margin: 0;
            }

            &::before {
                content: '';
                display: inline-block;
                width: 24px;
                height: 24px;
                flex-shrink: 0;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M11.5 6.5V15C11.5 15.8284 12.1716 16.5 13 16.5C13.8284 16.5 14.5 15.8284 14.5 15V6.5C14.5 4.84315 13.1569 3.5 11.5 3.5C9.84315 3.5 8.5 4.84315 8.5 6.5V17C8.5 19.4853 10.5147 21.5 13 21.5C15.4853 21.5 17.5 19.4853 17.5 17V9.5' stroke='black' stroke-linecap='round'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
            }
        }

        .file-name-display {
            font-size: 14px;
            color: #000000;
            margin-left: 8px;
            font-weight: 400;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
            vertical-align: middle;
        }

        input[type="file"] {
            position: absolute;
            width: 0.1px;
            height: 0.1px;
            opacity: 0;
            overflow: hidden;
            z-index: -1;
        }

        /* Consent Checkboxes styling */
        .consent-item {
            margin-bottom: 15px;

            label {
                display: flex;
                flex-direction: row;
                align-items: start;
                cursor: pointer;
                margin: 0;
            }

            input[type="checkbox"] {
                -webkit-appearance: none;
                appearance: none;
                display: inline-block;
                width: 18px;
                height: 18px;
                border: 1px solid #000000;
                border-radius: 0;
                background-color: transparent;
                cursor: pointer;
                position: relative;
                outline: none;
                margin: 3px 12px 0 0;
                flex-shrink: 0;
                box-shadow: none;

                &:checked::before {
                    content: '';
                    position: absolute;
                    top: 2px;
                    left: 5px;
                    width: 5px;
                    height: 9px;
                    border: solid #1e1e1e;
                    border-width: 0 2px 2px 0;
                    transform: rotate(45deg);
                }
            }
        }

        .wpcf7-list-item {
            margin: 0;
            padding: 0;
        }

        .wpcf7-list-item-label {
            font-size: 16px;
            font-weight: 400;
            color: #000000;
            line-height: 1.6;
            display: block;

            @media (max-width: 1024px) {
                font-size: 13px;
            }

            a {
                color: #000000;
                font-size: 16px;
                text-decoration: underline;

                @media (max-width: 1024px) {
                    font-size: 13px;
                }
            }
        }

        /* Privacy Note styling */
        .privacy-note {
            font-size: 12px;
            color: #000000;
            line-height: 1.6;
            margin-top: 20px;
            margin-bottom: 25px;
            display: block;

            a {
                font-size: 12px;
                text-decoration: underline;
            }
        }

        /* Centered Submit Button styling */
        .row.row6 p {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 15px;
        }

        .wpcf7-submit {
            background-color: #000;
            border: 1px solid #000;
            color: #ffffff;
            border-radius: 0;
            font-size: 16px;
            font-weight: 400;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: none;
            width: 100%;
            max-width: 480px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            outline: none;
            transition: 0.3s;
            font-family: inherit;

            &:hover {
                background-color: #ffffff;
                color: #2B2622;
            }

            &:disabled {
                opacity: 0.5;
                cursor: not-allowed;
            }
        }

        /* Spinner positioning */
        .wpcf7-spinner {
            display: none;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {

            .row.row1 p,
            .row.row2 p,
            .row.row3 p {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
    }

.wpcf7-response-output {
    display: none !important;
}


        /* Responsive adjustments */
@media (max-width: 1024px) {

    .left-col-form {
        display: none !important;
    }
}