
/* Pricing Page Specific Styles */
.content-section {
    padding: 60px 0;
}

/* Specific table cell style for pricing page if needed */
td:nth-child(2) {
    font-weight: bold;
    color: #007bff;
}

.pricing-container {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    align-items: stretch; /* Make items the same height */
    flex-wrap: wrap;
    margin-top: 30px;
}

.pricing-item {
    flex: 1;
    padding: 30px;
    margin: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    max-width: 300px; /* Limit the maximum width */
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item h3 {
    color: #28a745; /* A more appealing green */
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.pricing-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.additional-support {
    margin-top: 40px;
    font-size: 16px; /* Reduced font size */
    color: #6c757d; /* A more subtle color */
    text-align: center;
    font-weight: bold;
}

.additional-support strong {
    color: #e44d26; /* A softer red-orange */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
    }

    .pricing-item {
        width: 90%;
        margin: 20px auto;
        max-width: none;
    }
}
