.info-page-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    line-height: 1.7;
    color: #333;
}

.info-page-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

.info-page-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
}

.info-page-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

.info-page-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
    color: #555;
}

.info-page-content p {
    margin-bottom: 12px;
}

.info-page-content ul,
.info-page-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.info-page-content li {
    margin-bottom: 5px;
}

.info-page-content a {
    color: #0d6efd;
    text-decoration: none;
}

.info-page-content a:hover {
    text-decoration: underline;
}

/* Delivery tables */
.delivery-section {
    margin-bottom: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.delivery-table th {
    background: #e9ecef;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid #dee2e6;
}

.delivery-table td {
    padding: 9px 12px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.delivery-table tbody tr:last-child td {
    border-bottom: none;
}

.delivery-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Payment section */
.payment-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
}

.payment-method h3 {
    margin-top: 0;
}

/* Info note */
.info-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 25px;
}

.info-note p:last-child {
    margin-bottom: 0;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-card a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.schedule-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

.seller-details {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
}

.requisites-table {
    width: 100%;
    max-width: 500px;
    border-collapse: collapse;
    margin-top: 10px;
}

.requisites-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.requisites-table td:first-child {
    font-weight: 600;
    color: #555;
    width: 100px;
}

.requisites-table tr:last-child td {
    border-bottom: none;
}

/* Return/exchange */
.return-info-block {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.return-note {
    color: #856404;
    background: #fff3cd;
    border-radius: 6px;
    padding: 10px 15px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .info-page-content {
        padding: 15px 10px 30px;
    }

    .info-page-content h1 {
        font-size: 1.5rem;
    }

    .delivery-table th,
    .delivery-table td {
        padding: 7px 8px;
        font-size: 0.8rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .payment-section {
        grid-template-columns: 1fr;
    }
}
