/* Contact Form */
form {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

form p {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

form input,
form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

form input:focus,
form textarea:focus {
    border-color: #0d6efd;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

form textarea {
    resize: vertical;
    min-height: 140px;
}

form button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

form button:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    form {
        padding: 20px;
        margin: 20px 15px;
    }

    form input,
    form textarea,
    form button {
        font-size: 14px;
    }
}