.content-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.pricing-container {
    padding: 20px;
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pricing-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 300px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}

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

.pricing-card h3 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #6c757d;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
}

.pricing-card button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.2s;
}

.pricing-card button:hover {
    background-color: #0056b3;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
}

/* VAT note styling */
.vat-note {
    margin-top: 30px;
    text-align: center;
    font-size: 0.95em;
    color: #555;
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 6px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vat-note strong {
    color: #333;
}