.contact-header-wrapper {
    padding: var(--spacing-2xl);
    background-color: #e6d7d0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header-wrapper .contact-header-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4rem;
    margin-right: 4rem;
    font-size: 1.2rem;
}

.contact-header-wrapper .contact-header-info .phone-link,
.contact-header-wrapper .contact-header-info .email-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: black;
    font-weight: 700;
    /* font-size: 1.2rem; */
}

.contact-header-wrapper .contact-header-info .phone-link::before {
    content: "\260E";
    display: inline-block;
    width: 1.2rem;
    text-align: center;
    font-size: 1.2rem;
    color: #aa9183;
    line-height: 1;
}

.contact-header-wrapper .contact-header-info .email-link::before {
    content: "\2709";
    display: inline-block;
    width: 1.2rem;
    text-align: center;
    font-size: 1.2rem;
    color: #aa9183;
    line-height: 1;
}

.contact-header-wrapper .contact-header-info .phone-link:hover,
.contact-header-wrapper .contact-header-info .phone-link:focus,
.contact-header-wrapper .contact-header-info .email-link:hover,
.contact-header-wrapper .contact-header-info .email-link:focus {
    color: #8f7463;
    outline: none;
    text-decoration: underline;
}

.contact-header-wrapper .contact-header-info .contact-header-button {
    width: auto;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: #aa9183;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Footer styles */
.footer-wrapper {
    background-color: #aa9183;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ba9785;
    padding: var(--spacing-xl) 0;
    font-size: 0.9rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
}


@media (max-width: 768px) {
    .contact-header-wrapper {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .contact-header-wrapper h2 {
        text-align: center;
        width: 100%;
        margin-bottom: var(--spacing-md);
    }

    .contact-header-wrapper .contact-header-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
        margin-right: 0;
        width: 100%;
    }

    .contact-phone,
    .contact-email {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .contact-header-info>a {
        display: flex;
        justify-content: center;
        width: 100%;
        text-decoration: none;
    }

    .contact-header-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}