.announcement-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.announcement-content {
    background: #ffffff;  
    padding: 20px;
    border-radius: 15px; 
    max-width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.announcement-content h2 {
    color: #3434b3; 
    margin-top: 0;
}

.announcement-text p {
    color: #333;  
    font-size: 16px;
    margin: 10px 0;
}

.follow-us-text {
    margin-top: 20px;
    font-weight: bold;
    color: #3434b3; 
}

.social-media-links {
    margin: 10px 0;
}

.social-media-links .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    color: #ffffff;  
    background: #3434b3; 
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    transition: background 0.3s;
}

.social-media-links .social-icon:hover {
    background: #5a5a5a; 
}

.announcement-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background: #3434b3; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.announcement-button:hover {
    background: #2929a3;  
}

.close-announcement {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #3434b3; 
}

.no-scroll {
            overflow: hidden;
        }