.cf7-custom-form {
    max-width: 100%;
}

.cf7-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.cf7-field {
    width: 100%;
}

.cf7-full {
    grid-column: 1 / -1;
}

.cf7-custom-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.cf7-custom-form input,
.cf7-custom-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cf7-custom-form input:focus,
.cf7-custom-form textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

.cf7-custom-form textarea {
    min-height: 150px;
    resize: vertical;
}

.cf7-submit-wrap {
    text-align: center;
}

.cf7-submit-wrap input[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.cf7-submit-wrap input[type="submit"]:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .cf7-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cf7-full {
        grid-column: auto;
    }
}