/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 31 2026 | 05:22:31 */
.cf7-form {
    max-width: 700px;
    margin: auto;
}

.form-title {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.col.full {
    flex: 100%;
}

.cf7-form label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.cf7-form input,
.cf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.cf7-form textarea {
    height: 120px;
}

.cf7-form input:focus,
.cf7-form textarea:focus {
    border-color: #0a2540;
    outline: none;
}

.cf7-form input[type="submit"] {
    background: #0a2540;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cf7-form input[type="submit"]:hover {
    background: #163b63;
}

/* MOBILE */
@media(max-width:768px) {
    .row {
        flex-direction: column;
    }
}