/* General Container and Box Styles */
.pricing-container {
    color: black;
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: white;
    margin: 0;
    padding: 0;
}

/* Pricing Box Styles */
.pricing-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(0, 59, 64, 1) 0%, rgba(50, 75, 75, 1) 100%);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    border: 1px solid white;
    color: #fff;
}

.pricing-box:hover {
    transform: scale(1.05);
}

/* Heading Container */
.heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.title {
    font-size: 1.5em;
    margin: 10px 0;
    color: white;
}

.title.highlight {
    color: #00fff7;
}

/* Price Styling */
.price {
    font-size: 1.3em;
    font-weight: bold;
    margin: 15px 0;
    color: white;
}

.price.highlight {
    color: #00fff7;
}

.small-text {
    font-size: 0.6em;
    color: #00fff7;
}

/* Features List */
.features {
    text-align: left;
    padding: 0;
    margin: 0;
}

.features ul {
    padding-left: 1.5em;
    margin: 0;
    list-style-type: none;
}

.features li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

/* Button Styling */
.btn-price {
    background-color: white;
    color: black;
    font-size: 1em;
    padding: 10px 20px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

.btn-price:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

@media (max-width: 576px) {
    .pricing-box {
        padding: 15px;
    }

    .title {
        font-size: 1.2em;
    }

    .price {
        font-size: 1.2em;
    }

    .btn-custom {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}