/* CF7 Custom Styles */
.wpcf7-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.wpcf7-form label {
    display: block;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
    box-sizing: border-box;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #666;
}
.wpcf7-form input[type="submit"] {
    background: #c00;
    color: #fff;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}
.wpcf7-form input[type="submit"]:hover {
    background: #a00;
}
.wpcf7-response-output {
    color: #fff !important;
    border-color: #c00 !important;
    padding: 15px !important;
    border-radius: 6px;
}
