/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 0;
}

/* Header Styles */


header h1 {
    font-size: 36px;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

/* Main Section Styles */
main {
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Success and Error Messages */
.success-message {
    color: green;
    font-size: 18px;
    text-align: center;
}

.error-message {
    color: red;
    font-size: 18px;
    text-align: center;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Submit Button */
.submit-btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 90%;
        padding: 20px;
    }

    header h1 {
        font-size: 28px;
    }

    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .submit-btn {
        font-size: 14px;
    }
}
