/* Pricing Page Styles */
.pricing-page-content {
    padding: 40px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-tables-container {
    margin-bottom: 60px;
}

.pricing-section {
    margin-bottom: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e8ecef;
}

.pricing-section-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-icon {
    font-size: 1.8rem;
}

.pricing-subsection {
    margin-bottom: 30px;
}

.pricing-subsection:last-child {
    margin-bottom: 0;
}

.pricing-subsection-title {
    background: #f8f9fa;
    color: #495057;
    padding: 15px 30px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
}

.pricing-table-wrapper {
    padding: 0;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table thead th {
    background: #343a40;
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.pricing-table thead th:first-child {
    width: 65%;
}

.pricing-table thead th:last-child {
    width: 35%;
    text-align: right;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover {
    background-color: #f8f9fa;
}

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

.pricing-table tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    border: none;
}

.pricing-table tbody td:first-child {
    font-weight: 500;
    color: #2c3e50;
}

.pricing-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: #28a745;
    font-size: 1rem;
}

.pricing-footer {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.pricing-note {
    margin-bottom: 30px;
}

.pricing-note p {
    font-size: 1rem;
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

.pricing-contact h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-contact p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-page-content {
        padding: 20px 10px;
        overflow-x: hidden;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .pricing-section {
        margin: 20px 0;
        border-radius: 8px;
    }
    
    .pricing-section-title {
        padding: 15px 15px;
        font-size: 1.3rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .pricing-subsection-title {
        padding: 12px 15px;
        font-size: 1.1rem;
    }
    
    .pricing-table-wrapper {
        padding: 0;
        margin: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        font-size: 0.85rem;
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 10px 8px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .pricing-table thead th:first-child,
    .pricing-table tbody td:first-child {
        width: 65%;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .pricing-table thead th:last-child,
    .pricing-table tbody td:last-child {
        width: 35%;
        text-align: right;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .pricing-footer {
        padding: 30px 15px;
        margin: 20px 0;
    }
    
    .pricing-contact h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pricing-page-content {
        padding: 15px 5px;
    }
    
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .pricing-section {
        margin: 15px 0;
        border-radius: 6px;
    }
    
    .pricing-section-title {
        font-size: 1.1rem;
        padding: 12px 10px;
    }
    
    .pricing-subsection-title {
        font-size: 1rem;
        padding: 10px 10px;
    }
    
    .pricing-table-wrapper {
        padding: 0;
        margin: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table {
        font-size: 0.8rem;
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 8px 6px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .pricing-table thead th:first-child,
    .pricing-table tbody td:first-child {
        width: 68%;
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .pricing-table thead th:last-child,
    .pricing-table tbody td:last-child {
        width: 32%;
        font-size: 0.8rem;
        text-align: right;
        white-space: nowrap;
    }
    
    .pricing-footer {
        padding: 20px 10px;
        margin: 15px 0;
    }
}

/* Print Styles */
@media print {
    .pricing-section {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .pricing-section-title {
        background: #f0f0f0 !important;
        color: #333 !important;
    }
    
    .pricing-table thead th {
        background: #f0f0f0 !important;
        color: #333 !important;
    }
    
    .pricing-table tbody tr:hover {
        background-color: transparent !important;
    }
}
