/* Contact Button Styles */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.contact-btn i {
    margin-right: 5px;
}

.contact-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.contact-btn:active {
    transform: translateY(0);
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 15px;
    width: 100%;
}

.contact-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-form p {
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}
