/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f6f9;
    color: #333;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

/* Header Text */
.contact-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form Box */
.contact-container {
    background: #fff;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* Title */
h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Form Inputs */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Textarea Styling */
.input-group textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        max-width: 90%;
    }
}
