.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.info-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.right-container{
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why {
    background: url(assets/why.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.team {
    background: url(assets/team.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.commitment {
    background: url(assets/commitment.png);
    /* Placeholder color */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #7f8c8d;
    pointer-events: none;
    transition: 0.3s;
    background: #fff;
    padding: 0 0.5rem;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {
    top: -0.6rem;
    font-size: 0.8rem;
    color: #3498db;
}

.submit-btn {
    background: #800000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #580101;
}

.contact-info {
    margin-top: 1.5rem;
    /* background: #f8f9fa; */
    /* padding: 1rem; */
    border-radius: 4px;
}

@media (max-width: 768px) {
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-container,
    .contact-form {
        padding: 1.5rem;
    }
}