body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/* Banner Section */
.banner {
    width: 100%;
    height:240px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #f9f9f9; /* Optional background color */
    padding: 2px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for effect */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.banner.hidden {
    opacity: 0;
    visibility: hidden;
}

.banner-image {
    width: 100%; /* Full width banner */
    height:100px;
    margin-top: 35px;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
}


header {
    background-color: #333;
    color: #fff;
    padding: 5px;  
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 30px;  
    margin-bottom: 30px;
}

#contacts {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#contact-list li {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

#contact-list li:last-child {
    border-bottom: none;
}

#contact-list li a {
    text-decoration: none;
    color: #333;
}

#contact-list li a:hover {
    color: #666;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 5px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    font-size: 12px;
}

footer span {
    color: #fff;  
}

#search-input {
    position: relative;
    border: 2px solid;
    border-radius: 10px;
    padding: 7px 20px;  
    font-size: 18px;
    width: 50%;
    margin-left: 10%;
    margin-right: 4px;
    margin-top: 10px;
    animation: border-animate 2s infinite;
}

@keyframes border-animate {
    0% {
        border-color: #333;
    }
    50% {
        border-color: #fff;
    }
    100% {
        border-color: #333;
    }
}

#search-input::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 4px;
    background-color: #333;
    z-index: -1;
    margin-left: 10px;
}

#search-input::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    z-index: 1;
    margin-left: 10px;
}

#search-input:focus {
    width: 60%;
    padding: 15px;
    font-size: 20px;
    border: 2px solid #333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}