header {
    position: relative;
    margin: 10px 0; /* Reduced margin */
    padding: 20px; /* Added padding */
    background-color: #B3E5FC; /* Complementing shade of blue */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure floating icons stay within the header */
    border: 2px solid #CCCCCC; /* Added border */
}

header h1 {
    font-size: 2.5em; /* Increased font size */
    margin: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    width: 200px; /* Reduced width */
    height: auto;
}

.header-description {
    font-size: 0.9em; /* Slightly smaller font size */
    color: #666666; /* Gray color */
    margin-left: 20px; /* Margin to the left of the description */
    max-width: 600px; /* Limit the width of the description */
    text-align: left; /* Align text to the left */
}

.header-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure icons don't interfere with interactions */
}

.floating-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.35; /* Increased visibility */
    transition: transform 0.1s linear; /* Smooth movement */
    pointer-events: none; /* Ensure icons don't interfere with interactions */
    display: flex;
    align-items: center;
    justify-content: center;
}