/* Improved Container Styles */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
}

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.contact-card h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.contact-form .submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.contact-form .submit-btn:hover {
    background-color: #0056b3;
}

.success {
    color: #28a745;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}

.error {
    color: #dc3545;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}
