.page-wrapper {
    padding: 35px 88px 35px;
}
/* Contact Form Container */
.ccf-custom-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-family: inherit;
}

/* Form Paragraph Blocks */
.ccf-custom-form p {
    margin-bottom: 8px;
}
.ccf-custom-form p:last-child {
    margin-bottom: 0;
}
/* Form Labels */
.ccf-custom-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Text Inputs and Textarea */
.ccf-custom-form input[type="text"],
.ccf-custom-form input[type="email"],
.ccf-custom-form textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 17px;
    transition: border-color 0.3s ease;
	 height: 48px;
	    border: 1px solid #888;
		border-radius:6px;
}
/* Focus States */
.ccf-custom-form input[type="text"]:focus,
.ccf-custom-form input[type="email"]:focus,
.ccf-custom-form textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0,115,170,0.2);
}

/* Textarea Height */
.ccf-custom-form textarea {
    height: 250px;
    resize: vertical;
}

/* Submit Button */
.ccf-custom-form input[type="submit"] {
    background: #abc5fe;
    color: #333;
    padding: 12px 50px 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: auto;
    transition: background 0.2s ease;
	    background-image: url("arrow-right.svg");
    background-size: 20px;
	background-repeat:no-repeat;
	background-position:center right 20px;
}

.ccf-custom-form input[type="submit"]:hover {
    background:#8badf9;
	background-image: url("arrow-right.svg");
    background-size: 20px;
	background-repeat:no-repeat;
	background-position:center right 20px;
}

/* Status Notifications */
.ccf-custom-form {
    max-width:650px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
	box-shadow: none;
    font-family: inherit;
}

.ccf-notice.ccf-error {
    background: #ffe6e6;
    color: #cc0000;
    border: 1px solid #ffa3a3;
}
.ccf-notice.ccf-success {
    background: #e6ffe6;
    color: #006600;
    border: 1px solid #a3mfa3;
}


@media (max-width: 991px){
.page-wrapper {
    padding: 20px;
}
.content-layout .content-left .content p strong {
    word-break: break-word;
}
}