/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Banner Styles */
.banner {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.banner h2 {
    font-size: 3rem;
}

/* Contact Section Styles */
.contact {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.contact label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact textarea {
    resize: vertical;
}

.contact button {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.contact button:hover {
    background-color: #444;
}

.privacy-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 10px;
}

/* Footer Styles */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
/* Thank You Banner Styles */
.thank-you-banner {
    background-color: #f4f4f4;
    text-align: center;
    padding: 100px 20px;
}

.thank-you-banner h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-banner p {
    font-size: 1.25rem;
    color: #666;
}

