body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fafc; /* Light background */
}
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748; /* Dark heading color */
    margin-bottom: 20px;
}
p {
    font-size: 1.1rem;
    color: #4a5568; /* Gray text color */
    margin-bottom: 30px;
}
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}
.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #ea0000; /* Green price color */
    margin-bottom: 20px;
}
.pricing-card .price small {
    font-size: 1rem;
    color: #718096; /* Gray price detail */
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}
.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0; /* Light border */
    color: #4a5568;
}
.pricing-card ul li:last-child {
    border-bottom: none;
}
.pricing-card button {
    background-color: #ea0000; /* Green button */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
}
.pricing-card button:hover {
    background-color: #38a169; /* Darker green on hover */
}
.contact-us {
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 30px;
}
.contact-us a {
    color: #ea0000;
    text-decoration: none;
    font-weight: 600;
}
.contact-us a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pricing-card {
width: 100%;
margin: 20px 0;
    }
}
