body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 40px;
    background: #f9f9f9;
    color: #111;
    text-align: left;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
    text-align: left;
}

p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

hr {
    border: none;
    height: 1px;
    background: #262626;
    margin: 20px 0;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #1e3a8a, #6d28d9);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.actualites {
    margin-top: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.link {
    color: #0059ff;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    .container {
        width: 100%;
        padding: 0px;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}

