.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    margin-right: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.submit-button,
button {
    background-color: #007BFF; /* Blue color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.learn-more-button {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.learn-more-button button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.learn-more-button button:hover {
    background-color: #007BFF;
}

.info-box {
    flex: 1;
    margin-left: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
   /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

.info-box h2 {
    color: #555;
    font-family: 'Arial', sans-serif;
}

.info-box p {
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.info-box a {
    text-decoration: none;
}

.video-container {
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 950px) {
    .container {
        flex-direction: column;
    }

    .info-box {
        margin: 10px 0;
    }

    .contact-form {
        margin-right: 0;
    }
}