.header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #f5f5f5;
}

.header-image {
    width: 300px;
    height: auto;
    max-width: 200px;
}

.header-image img {
    width: 100%;
    height: auto;
}

.header-info {
    width: 100%;
}

.site-name {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.site-description {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    margin: 10px 0 0 0;
    font-size: 16px;
    color: #666;
}

.image_small {
    vertical-align: top;
    width: 100px;
    height: auto;
  }
  
  .image_medium {
    vertical-align: top;
    width: 450px;
    height: auto;
    margin: 10px;
  }

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: flex-start;
    }
    .headingLogo {
        max-width: 100%; /* Image can take full width on small screens */
        margin: 0 0 10px 0; /* Space below the image */
    }
    .headingText {
        font-size: 1em; /* Reduce font size for better fit */
    }