#colors {
    /* Updated colors */
    color: #FFB8E0; /* Was #046963 */
    color: #EC7FA9; /* Was #088178 */
    color: #1a1a1a;
    color: #212529;
    /* color: #242424; */ /* Removed duplicate */
    color: #3547B3;
    /* color: #3547B3; */ /* Removed duplicate */
    color: #465b52; /* Kept */
    color: #4f5d77;
    color: #63a2c1;
    color: #d77f7a;
    color: #fff;
}

/* Start Contact */

.contact {
    padding: 30px 0;
}

.contact .header h3 {
    margin-bottom: 10px;
    color: #1a1a1a; /* Kept */
}

.contact form {
    margin-top: 40px;
}

.contact form input,
.contact form textarea {
    border: 1px solid #fddde4; /* Light green border replaced */
    border-radius: 4px;
    height: 45px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 20px; /* Keep padding */
    padding-right: 10px; /* Add some right padding for RTL */
    font-size: 13px;
    color: #161c27; /* Kept */
    width: 100%;
    outline: none;
    transition: all .3s;
}

/* Keep the blue hover effect or change to pink? User didn't specify, let's change to pink hover */
.contact form input:focus, /* Changed hover to focus for better UX */
.contact form textarea:focus {
    border: 1px solid #FFB8E0; /* Changed hover border to pink hover */
    box-shadow: 0 0 0 0.2rem rgba(236, 127, 169, 0.25); /* Optional: Add focus ring */
}
/* Remove the blue hover if focus is used */
.contact form input:hover,
.contact form textarea:hover {
     border-color: #FFB8E0; /* Match focus border */
}


.contact form textarea {
    padding-top: 13px;
    height: 175px;
}

.contact form button {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 40px;
    color: #fff;
    border: none; /* Can remove if border below is sufficient */
    background-color: #EC7FA9; /* Green replaced */
    border: 1px solid #EC7FA9; /* Use base pink for border initially */
    border-radius: 5px;
    transition: all .3s;
    outline: none;
    cursor: pointer; /* Added cursor */
}

.contact form button:hover {
    background-color: #FFB8E0 !important; /* Dark green hover replaced */
    border-color: #FFB8E0 !important; /* Match hover background */
}

/* End Contact */