
/* Styl podstrony Regulamin - wersja ciemna i responsywna */

.page-content.terms-page {
    padding: 60px 20px;
    background-color: #121212;
}

.page-content.terms-page .terms-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.page-content.terms-page .terms-section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.page-content.terms-page .terms-section:nth-of-type(2) { animation-delay: 0.4s; }
.page-content.terms-page .terms-section:nth-of-type(3) { animation-delay: 0.6s; }
.page-content.terms-page .terms-section:nth-of-type(4) { animation-delay: 0.8s; }
.page-content.terms-page .terms-section:nth-of-type(5) { animation-delay: 1s; }
.page-content.terms-page .terms-section:nth-of-type(6) { animation-delay: 1.2s; }
.page-content.terms-page .terms-section:nth-of-type(7) { animation-delay: 1.4s; }

.page-content.terms-page .terms-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #5bc0de;
    transition: color 0.3s ease, transform 0.3s ease;
}

.page-content.terms-page .terms-section h2:hover {
    color: #00aaff;
    transform: translateX(5px);
}

.page-content.terms-page .terms-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-content.terms-page .terms-infographic {
    text-align: center;
    margin-top: 40px;
    font-size: 48px;
    color: #5bc0de;
}

.page-content.terms-page .terms-infographic p {
    font-size: 16px;
    margin-top: 10px;
    color: #5bc0de;
}

.page-content.terms-page .terms-infographic i {
    transition: transform 0.5s ease;
}

.page-content.terms-page .terms-infographic:hover i {
    transform: rotate(15deg) scale(1.2);
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .page-content.terms-page .terms-title {
        font-size: 26px;
    }

    .page-content.terms-page .terms-section h2 {
        font-size: 20px;
    }

    .page-content.terms-page .terms-infographic {
        font-size: 36px;
    }
}


/* Poprawione style linków */

/* Poprawione style linków na stronie Regulamin */

.page-content.terms-page a {
    color: #5bc0de;
    text-decoration: underline;
    transition: color 0.3s ease, transform 0.3s ease;
}

.page-content.terms-page a:hover {
    color: #00aaff;
    transform: scale(1.05);
}
