.terms {
    max-width: 900px;
}

/* jednotlivé bloky */
.term-section {
    margin-top: 40px;
    padding: 25px 30px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(168,85,247,0.3);
    transition: 0.3s;
}

/* hover efekt */
.term-section:hover {
    background: rgba(168,85,247,0.05);
    transform: translateY(-2px);
}

/* nadpis */
.term-section h3 {
    color: #c084fc;
    margin-bottom: 15px;
}

/* text */
.term-section p {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* zvýraznění (rezervační poplatek) */
.term-section.highlight {
    background: linear-gradient(145deg,#1e1b4b,#312e81);
    border-left: 3px solid #a855f7;
    box-shadow: 0 0 30px rgba(168,85,247,0.25);
	color: white;
}

/* bullet styl */
.term-section .bullet {
    margin: 15px 0;
    padding-left: 10px;
    opacity: 0.9;
}

/* první odstavec (intro) */
.terms > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}
