/* =========================================
   СТИЛІ ІНФОРМАЦІЙНИХ СТОРІНОК
   ========================================= */
.top-spacing { height: 40px; }

.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

/* Header сторінки */
.catalog-header-card {
    padding: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.header-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Сітка контенту */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.info-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.02);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Список (Оплата) */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.info-list-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

.list-item-marker {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.3);
}

.list-item-content h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.list-item-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Бічна панель */
.highlight-text { color: #f97316; }
.full-width { width: 100%; }

/* Адаптація */
@media (max-width: 992px) {
    .info-grid { grid-template-columns: 1fr; }
    .catalog-header-card { padding: 40px 20px; }
}

/* --- СТИЛІ ТЕКСТУ ПОЛІТИКИ --- */
.policy-content {
    padding: 40px !important;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h2 {
    color: #f97316; /* Акцентний помаранчевий для розділів */
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.policy-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Примітка */
.policy-note {
    background: rgba(249, 115, 22, 0.05);
    border: 1px dashed rgba(249, 115, 22, 0.3);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 40px 0;
}

.policy-note svg {
    color: #f97316;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-note p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .policy-content { padding: 25px !important; }
    .policy-section h2 { font-size: 1.2rem; }
}
