.contact-container {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.contact-left, .contact-right {
    flex: 1;
    padding: 20px;
}

.contact-left {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.contact-right form {
    display: flex;
    flex-direction: column;
    color: #D35400;
}

.contact-right label {
    margin-top: 10px;
}

.contact-right input, .contact-right textarea {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: #E67E22;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #D35400;
}
.contact-left p, a{
    color: black;
    text-decoration: none;
}
.contact-left img{
    max-width: 20%;
}
.contact-left h2{
    color:  #003366;
}
.contact-right h2{
    color:#003366;
}
/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }
}
.social-icons{
	padding:30px;
	background-color:#00506b;
  text-align: center;
}
.social-icons a{
	color:#fff;
  line-height:30px;
  font-size:30px;
  margin: 0 5px;
  text-decoration:none;
  
}
.social-icons a i{
	line-height:30px;
  font-size:30px;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.social-icons a:hover i{
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.5);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.5);   
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.5);
  transition: all 200ms ease-in;
  transform: scale(1.5);
}