/* Container principal */
.responsive-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Bloc des services */
.services-block {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-tabs {position: sticky; top: 100px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); height: auto; margin-bottom: 1.563rem; overflow: hidden; background: linear-gradient(0deg, #f6f6f6, #ffffff); padding: 5px; border: 5px solid #fff; border-radius: 10px;}

.services-tabs h1 {
    margin-bottom: 15px;
    color: #004eb4;
}

.tabs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tabs-list li {
    margin: 10px 0;
}

.tabs-list a {fƒ
    text-decoration: none;
    color: #004eb4;
    font-weight: bold;
    transition: color 0.3s ease;
}

.tabs-list a:hover {
    color: #e3221d;
}

.services-content .tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-content .tab-content.active {
    display: block;
}

/* Bloc des actualités */
.news-block {
    flex: 3;
    background: transparent;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 ;
}

.news-block h2 {color: #004eb4; padding: 0px; text-align: center;
}

.news-item {
    margin-bottom: 20px;
    text-align: center;
}

.news-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.news-item h3 {
    margin: 10px 0 5px;
    font-size: 1.1em;
    color: #004eb4;
}

.news-item p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
}

.news-item a {
    text-decoration: none;
    color: #e3221d;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .responsive-container {
        flex-direction: column;
    }

    .services-block, .news-block {
        flex: 1;
    }
}
