/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

.pricing-intro {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
}
.pricing-intro h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.pricing-intro p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.pricing-conclusion {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    margin-top: 30px;
}
.pricing-conclusion h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}
.pricing-conclusion p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.pricing {
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}

.pricing-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.pricing-card h2 {
    font-size: 1.5em;
    margin: 0;
    color: #B9FF66; /* Neon green */
}

.price {
    font-size: 2em;
    color: #000; /* Black */
    margin: 10px 0;
}

.details {
    font-size: 1em;
    color: #666;
    margin: 10px 0;
}

.pricing-card p {
    font-size: 0.9em;
    color: #666;
    margin: 10px 0;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

ul li:last-child {
    border-bottom: none;
}

.btn {
    background-color: #B9FF66; /* Neon green */
    color: #000; /* Black */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #9acd32; /* Darker green */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-intro h2,
    .pricing-conclusion h2 {
        font-size: 1.5em;
    }
    
    .pricing-intro p,
    .pricing-conclusion p {
        font-size: 1em;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-intro h2,
    .pricing-conclusion h2 {
        font-size: 1.2em;
    }
    
    .pricing-intro p,
    .pricing-conclusion p {
        font-size: 0.9em;
    }
    
    .pricing-card h2 {
        font-size: 1.2em;
    }
    
    .price {
        font-size: 1.5em;
    }
    
    .details {
        font-size: 0.9em;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
