.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;
    }
}

        .gallery-container1 {
            display: flex; /* Enables flexbox layout */
            gap: 10px;      /* Adds space between images */
            padding: 10px;
        }
        .gallery-container1 img {
            width: 400px;
            height: 580px;
            border: 1px solid #ccc; /* Optional: adds a border */
        }
    
     .gallery-container2 {
            display: flex; /* Enables flexbox layout */
            gap: 10px;      /* Adds space between images */
            padding: 10px;
        }
        .gallery-container2 img {
            width: 400px;
            height: 380px;
            border: 1px solid #ccc; /* Optional: adds a border */
        }

         /* Basic styling for visibility */
       
        .search-container {
            margin-bottom: 10px;
        }
        input {
            padding: 5px;
            font-size: 10px;
        }
        button {
            padding: 5px;
            font-size: 10px;
            cursor: pointer;
        }
        /* Style for highlighted matches */
        .highlight {
            background-color: yellow;
            font-weight: bold;
        }
        