section .header{
    margin-bottom: 1rem;
    /* color: #fff; */
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}
.pricing{
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 2rem;
}

[data-bs-theme=dark] .pricing .card2{
    padding: 5rem 1rem;
    /* background-color: #36454F; */
    display: flex;
    flex-direction: column;
    border: 0.5px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing .card2{
    padding: 5rem 1rem;
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    border: 0.5px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing .card2:hover{
    /* background-color: #e9e9e9; */
    border:1px solid #ccc;
}

.pricing .card2 .content{
    flex: 1;
    margin-bottom: 2rem;
}


.pricing .card2 h4{
    margin-bottom: 1rem;
    /* color: #000000; */
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}
.pricing .card2 p{
    font-weight: 500;
    /* text-align: left; */
    justify-content: center;
}


.pricing .card2 h3{
    /* color: #000000; */
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    /* border-bottom: 2px dashed #000000; */
    text-align: center;
}

.pricing .card2 p{
    /* color: #000000; */
    margin-bottom: 0.75rem;
}

[data-bs-theme=dark] .pricing .card2 p{
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.pricing .card2 p i{
    /* color: #ccc; */
    font-size: 1.2rem;
    margin-right: 0.3rem;
}
@media (max-width: 1024px) {
    .features, .pricing {
        grid-template-columns: 2fr;
    }
}
@media (max-width: 1440px) {
    .features, .pricing {
        grid-template-columns: 2fr;
    }
}
.current-plan {
    border: 2px solid #ff0000; /* Example: red border for current plan */
    background-color: #f0f0f0; /* Example: light gray background for current plan */
}
.current-plan-text {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff0000;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}
.container {
    display: flex;
    flex-wrap: wrap;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-md-3 {
    display: flex;
    flex: 1;
    margin-bottom: 1rem;
}
.card {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card2 {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.content {
    flex: 1;
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-container .btn {
    margin-top: 10px;
}