/* Main Content Wrapper Styling */
.content-wrapper {
    padding: 2rem;
    background-color: #f9f9f9;
}

.main-content {
    text-align: center;
    margin-bottom: 2rem;
}

.main-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.main-content p {
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

/* Submit Button */
.btn-submit {
    padding: 0.8rem 1.5rem;
    background-color: #ff5733;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn-submit:hover {
    background-color: #c13e20;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}