*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-section {
    padding: 30px 35px;
    background-color: #fff;
}

.contact-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.contact-data span, 
.feedback-description span{
     color: #7A0000;

}

.contact-data h3 {
    list-style-type: disc; /* shows standard bullet points */
    display: inline-block; /* keeps the list centered */
    text-align: left;      /* aligns text inside the list to the left */
    margin-top: 8px;
}

.contact-data ul {
    list-style-type: disc; /* shows standard bullet points */
    padding-left: 25px;    /* adds space so bullets aren't flush with the edge */
    text-align: left;      /* aligns text inside the list to the left */
    margin-top: 8px;
    line-height: 1.6;
    color: #444;
}

.contact-data, 
.feedback-form {
    flex: 1 1 400px;
    max-width: 540px;
    padding: 20px 30px;
}

.feedback-description p {
 font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align:justify;
}

.feedback-description h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align:center;
}


.feedback-icon {
    text-align: center;
    margin-bottom: 10px;
}

.feedback-icon img {
    height: 150px;
}

.button-content {
    text-align: center;
}
a.button{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    background: grey;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.3s ease;
}

a.button:hover {
    background: #ebc238;
    font-weight: 400;
    color: #fff;
    transform: translateY(-3px);

}
