
.site-header {
    background-color: #303030; /* Dark background for the header */
    color: white;
    padding: 10px 20px; /* Some padding around the content */
    display: flex;
    justify-content: flex-end; /* Aligns content to the right side of the header */
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 930px; /* Space between the email and phone links */
}

.contact-link {
    color: white; /* White text color for visibility on dark background */
    text-decoration: none; /* Removes the default underline from links */
    display: flex;
    align-items: center;
    font-size: 14px;
}

.contact-link i {
    margin-right: 8px; /* Space between the icon and the text */
}

.contact-link:hover {
    text-decoration: none;
    color:#ffff00;


}

/* Basic media query for responsiveness on small screens */
@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

        