body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #333;
    text-align: center;
}

header h2 {
    color: #333;
    text-align: center;
}

header p {
    text-align: center;
    margin-bottom: 20px;
}

.video-placeholder, .image-placeholder {
    text-align: center;
    margin-bottom: 20px;
	width:100%;
}
.video-placeholder img, .image-placeholder img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove extra space below images */
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: bold;
}

form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px;
    font-size: 18px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	width:50%;
#	margin:0 auto;
	margin-bottom:10px;
}

form button:hover {
    background-color: #218838;
}

.facebook-btn {
	text-align:center;
}

input[type="email"],
input[type="tel"],
input[type="text"] {
    padding: 10px;
    width: 60%;
    max-width: 300px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}