body{
    margin:0;
    padding:0;
    font-family:Arial, sans-serif;
    background:#f4f7fb;
}

.wrap{
    width:1100px;
    margin:0 auto;
}

/* 1. СЛАЙДШОУ */
.slideshow-container{
    width:100%;
    height:350px;
    overflow:hidden;
    position:relative;
}

.slide img{
    width:100%;
    height:350px;
    object-fit:cover;
}

/* 2. МЕНЮ – STICKY */
.menu{
    background:#0066aa;
    padding:15px;
    text-align:center;
    z-index:1000;
}

.sticky{
    position:sticky;
    top:0;
}

.menu a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-size:18px;
    font-weight:bold;
}

/* 3. ДВЕ КОЛОНИ */
.two-columns{
    display:flex;
    gap:25px;
    margin-top:30px;
}

/* Лява колона – новини */
.news{
    flex:2;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.news h2{
    margin-bottom:20px;
    color:#0066aa;
    font-size:28px;
}

.news-card{
    display:flex;
    gap:20px;
    background:#f7faff;
    border-radius:12px;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #dce7f5;
    transition:0.3s;
}

.news-card:hover{
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
    transform:translateY(-3px);
}

.news-card img{
    width:150px;
    height:100px;
    object-fit:cover;
    border-radius:10px;
}

.news-text h3{
    margin:0 0 8px 0;
    font-size:20px;
    color:#004d80;
}

.news-text p{
    margin:0;
    color:#333;
}

/* Дясна колона – полезни връзки (карти) */
.resources{
    flex:1;
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.resources h2{
    color:#0066aa;
    margin-bottom:20px;
    text-align:center;
}

.resources-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.resource-card{
    background:#f7faff;
    border:1px solid #dce7f5;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.resource-card:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.resource-card .icon{
    font-size:40px;
    margin-bottom:10px;
}

.resource-card h3{
    margin:0 0 8px 0;
    font-size:22px;
    color:#004d80;
}

.resource-card p{
    margin:0 0 15px 0;
    color:#333;
    font-size:15px;
}

.res-btn{
    display:inline-block;
    padding:10px 18px;
    background:#0066aa;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:0.3s;
}

.res-btn:hover{
    background:#004d80;
}

/* 4. АКОРДЕОН */
.accordion-section{
    margin-top:30px;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.accordion{
    background:#e3f2fd;
    color:#004d80;
    cursor:pointer;
    padding:15px;
    width:100%;
    border:none;
    text-align:left;
    outline:none;
    font-size:18px;
    margin-bottom:5px;
    border-radius:6px;
}

.panel{
    padding:10px 15px;
    display:none;
    background:white;
    border-left:3px solid #0066aa;
    margin-bottom:10px;
}

/* 5. ВИДЕА */
.videos{
    margin-top:30px;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.video-grid iframe{
    width:100%;
    height:200px;
    border-radius:10px;
}

/* 6. FOOTER */
.footer{
    margin-top:40px;
    background:#003d66;
    color:white;
    text-align:center;
    padding:20px;
    font-size:16px;
}

/* Responsive */
@media (max-width: 900px){
    .two-columns{
        flex-direction:column;
    }

    .news-card{
        flex-direction:column;
        text-align:center;
    }

    .news-card img{
        width:100%;
        height:180px;
    }

    .video-grid{
        grid-template-columns:1fr;
    }
}
