.prestataires-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    padding: 2rem 0;
}

.prestataires-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1240px;
    width: 90%;
    text-align: center;
}

.prestataires-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.prestataires-subtitle {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features {
    text-align: left;
    margin: 2rem 0;
}

.features h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 0.5rem 0;
    color: #7f8c8d;
}

.features li:before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-access {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login {
    background: #3498db;
    color: white;
}

.btn-login:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-register {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-register:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

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