.contact {
    width: 100%;
    border-top: 1px solid rgb(13, 80, 161);
    border-bottom: 1px solid rgb(13, 80, 161);
    margin-bottom: 100px;
}

.contact-row {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.contact-row:first-child {
    border-bottom: 1px solid rgb(13, 80, 161);
}

.contact-row:first-child > div {
    padding-top: 15px;
    padding-bottom: 25px;
}

.contact-row > div:first-child {
    display: flex;
}


.contact-row > div:first-child > div {
    flex: 1;
}



.contact-row > div:first-child > div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: top;

}

.contact-row > div:first-child {
    border-right: 1px solid rgb(13, 80, 161);
}

.contact-row input[type="text"], .contact-row input[type="email"], .contact-row textarea {
    width:100%;
	border-radius:25px;
	margin-bottom:30px;
	border: 1px solid rgb(13, 80, 161);
	  padding-left: 20px;  /* Left spacing */
}

.contact-row input[type="text"], .contact-row input[type="email"] {
    height:40px;
	border-radius:25px;
	  height: 40px;
  line-height: 40px;   /* Vertically centers text and placeholder */
}

.contact-row textarea {
	  padding-top: 10px;  /* Left spacing */
}

.contact-row input::placeholder, .contact-row textarea::placeholder {
  color: rgb(13, 80, 161);        /* Optional */
}

.contact-row input[type="submit"] {
background: var(--color-main-menu);
    color: #fff;
    border-color: var(--color-main-menu);
	padding: 10px 16px;
    border: 2px solid var(--color-main-menu);
    border-radius: 999px;
    text-decoration: none;
	margin-bottom:130px;
}



.faq-list {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0;
    border: 1px solid rgb(13, 80, 161);
    padding: 20px;
    box-sizing: border-box;
	margin-top:40px;
	margin-bottom:40px;
	margin-right:40px;
	border-radius:20px;
	color: rgb(13, 80, 161);
	font-family: var(--font-body);
	
}

/* each FAQ item */
.faq-item {
    display: block;        /* guarantees vertical stacking */
    width: 100%;
}

/* add spacing BETWEEN items (your "empty row") */
.faq-item + .faq-item {
    margin-top: 15px; /* creates visual empty row gap */
    padding-top: 15px;
}

/* question/title */
.faq-item .entry-title {
    font-weight: normal;
    margin: 0 0 10px 0;
	font-weight: bold;
	font-size:16px;
}



/* answer/content */
.faq-item .entry-content {
    margin: 0;
}

/* answer/content */
.faq-item .entry-content p {
    display: inline;
}

@media (max-width: 768px) {

    .contact {
        width: 100%;
        margin-bottom: 40px;
    }

    .contact-row {
        display: block;
        width: 100%;
    }

    /* remove the empty right column effect */
    .contact-row > div:last-child {
        display: none;
    }

    /* make content full width */
    .contact-row > div:first-child {
        width: 100%;
        border-right: none;
        display: block;
    }

    .faq-list {
        width: 100%;
        margin: 20px 0;
        padding: 20px;
        border-radius: 15px;
        box-sizing: border-box;
    }

    .faq-item .entry-title {
        font-size: 15px;
    }

    .faq-item .entry-content {
        font-size: 15px;
    }
}