/* Widget Notice With Images - section-11 renamed to 'notices' */
.notices {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
    margin-bottom: 50px;
}

.notices-container {
    width: 1240px;
    height: 361px;
    border-radius: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-left: 40px;
}

.notices-content {
    width: 801px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.notices-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: white !important;
    margin: 0;
}

.notices-content p {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 10px;
}

.notice-button {
    display: inline-block;
    width: 142px;
    height: 45px;
    background-color: white;
    color: #46AD67;
    font-size: 20px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    line-height: 45px;
}

.notice-button:hover {
    background-color: #46AD67;
    color: white;
}

.notices-image {
    width: 241px;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Responsive design */
@media (max-width: 1280px) {
    .notices-container {
        width: 95%;
        padding-left: 30px;
    }
    
    .notices-content {
        width: 70%;
    }
}

@media (max-width: 900px) {
    .notices-container {
        height: auto;
        padding: 40px 30px;
        flex-direction: column;
        gap: 30px;
    }
    
    .notices-content {
        width: 100%;
    }
    
    .notices-content h1 {
        font-size: 28px;
    }
    
    .notices-content p {
        font-size: 16px;
    }
    
    .notices-image {
        width: 180px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .notices-container {
        padding: 30px 20px;
    }
    
    .notices-content h1 {
        font-size: 24px;
    }
    
    .notices-image {
        width: 150px;
        height: 160px;
    }
    
    .notice-button {
        width: 120px;
        font-size: 18px;
    }
}
