@charset "utf-8";
/* CSS Document */
body {
    margin: 0;
}

.main-container {
    display: flex;
}

.left-column {
    flex: 1;
    background-color: #DAE6F0;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}


.float-right-img {
    float: right;
}

.right-column {
    flex: 1;
    background-color: #fff3f3;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);

}
.right-column-img {
    align-self: flex-end;
    display: block; /* Ensures that the image takes up the full width available */
}

.radio-group {
    flex: 1;
    margin-right: 10px;
    text-align: left;
}

.radio-group p {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form {
    width: 65%;
	margin-left: 110px;
	margin-top: -25px;
    background-color: #F4DFF4;
    padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 60px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
/* Responsive styles for smaller screens and iPhones */
@media (max-width: 767px) {
    .main-container {
        flex-direction: column;
        align-items: center;
    }

    .left-column,
    .right-column {
        margin-left: 0; /* Reset the margin to stack the columns */
        width: 100%; /* Make each column take full width */
    }

    .social-icons {
        text-align: center; /* Center the icons in smaller screens */
        margin-top: 20px; /* Add some space between contact info and icons */
    }

    .social-icons a {
        display: inline-block;
        margin-right: 10px; /* Adjust as needed */
    }
}
.contact-form button {
    width: 80px;
    height: 40px;
	margin-top: 20px;
    border-radius: 20px;
    background-color: #0069f8; /* Green background color */
    color: white; /* White text color */
    border: none; /* No border */
    cursor: pointer; /* Cursor on hover */
}

.contact-form button:hover {
    background-color: #45a049; /* Darker green on hover */
}

