.collaborate-block, .find-me-block{
    background-color: #e6b25e;  
}

.feedback-block{
    background-color: #e8ddca;  
    display: none;
}

.feedback-block, .collaborate-block, .find-me-block{
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    padding: 10px;
    padding-left: 20px;
    margin: 10px 0;
}



.fas, .fab {
    color: #0A1F44; /* Default color for icons */
    margin-right: 5px; /* Space between icon and text */
    
}


.socials-links i:hover {
    color: #7d705e; /* Change icon color on hover */
}

input[type="submit"], input[type="reset"]{
    background-color: #b78643;
}

input[type="submit"], input[type="reset"], #category, #feedback-text{
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
   
}

.contact-address {
    display: flex; /* Use flexbox to align items side by side */
    justify-content: flex-start; /* Space out the address blocks evenly */
    gap: 20px; /* Adds space between the address blocks */
    margin: 20px 0; /* Add some margin around the address block */
    align-items: flex-start;
}

address {
    background-color: #edc78e;
    padding: 20px; /* Padding inside the address block */
    /* Light border around each block */
    border-radius: 8px; /* Rounded corners */
     /* Each address takes 45% of the width */
    min-height: 180px;
    min-width: 200px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease;/* Subtle shadow for depth */
}

address:hover{
    transform: scale(1.1);

}

p a{
    text-decoration: none;
    color: #36332f;
}

p a:hover{
    color: #716a60;
    
}

#feedback-text{
    border-radius: 5px;
    resize: none;
    width: 75%;
}


input[type="submit"]:hover, input[type="reset"]:hover{
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background-color: #e6b25e;
    cursor:pointer;
   
}