/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Hero Section */
.contact-hero {
    position: relative;
    background: url('help1.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 100px 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero-text {
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Contact Form Section */
.contact-form {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.input-group input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 150px;
    resize: none;
}

button {
    background: #d9002f;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    transition: 0.3s;
}

button:hover {
    background: #b00024;
}

/* Contact Information */
.contact-info {
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;
}

.contact-info p {
    font-size: 20px;
    margin: 12px 0;
    font-weight: bold;
}
