/* Specyficzne style dla podstrony dla lekarza */

/* Sekcje */
section {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

section:nth-child(2) {
    animation-delay: 0.2s;
}

section:nth-child(3) {
    animation-delay: 0.4s;
}

section:nth-child(4) {
    animation-delay: 0.6s;
}

section:nth-child(5) {
    animation-delay: 0.8s;
}

/* Karty funkcji */
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--medical-500), var(--medical-400));
}

/* Karty zalet */
.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-500), var(--accent-100));
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

/* Sekcja przygotowania */
.preparation-section {
    background-color: var(--gray-50);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.preparation-section ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.preparation-section ul li::before {
    content: '•';
    color: var(--medical-600);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Listy */
ul.list-disc li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

ul.list-disc li::before {
    content: '•';
    color: var(--medical-600);
    font-weight: bold;
    position: absolute;
    left: 0;
}

ul.list-disc li ul.list-disc li::before {
    content: '◦';
}