#contact-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    background-color: #d3cfc3;
    padding: 0 0 50px 0;
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 1px 0px 20px var(--main-bg-color);
}
#header {
    height: 300px;
    width: 100%;
    margin: 0;
}
#header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#contact-information,
#social-media-information {
    padding: 20px;
    border-radius: 10px;
}

#contact-information p,
#social-media-information p {
    color: var(--dark-text-color);
    font-weight: bolder;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.contact-link {
    color: var(--second-accent-color);
    transition: color 0.3s ease;
    font-weight: 100;
    margin: 5px 0;
}

.contact-link:hover {
    color: var(--accent-color);
}

.icon {
    font-size: var(--extra-large-txt);
    color: var(--accent-color);
    margin: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
    color: var(--second-accent-color);
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    #contact-information,
    #social-media-information {
        margin-bottom: 10px;
    }
}
