/* Contact Form Styles */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.send-btn {
    margin-top: 10px;
    width: 100%;
    align-self: center;
    border: none;
    cursor: pointer;
}