#subscription-table {
    border-collapse: collapse;
    width: 90%;
    margin: auto; 
    padding: 0;
    border-spacing: 0;
    margin-bottom: 0; 
    
}

#subscription-table th, 
#subscription-table td {
    padding: 1rem;
}

.no-border th {
    border-left: none;  
    border-right: none;  
}

.no-border {
    border-bottom: none; 
}

.no-border th:first-child {
    border-left: none;
}

.no-border th:last-child {
    border-right: none; 
}

#subscription-table .table-highlight {
    background-color: #242f61;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 75%, transparent);
    background-size: 10px 10px;
    color: white;
}

#subscription-table td strong {
    color: #000;
}

.whats-included-header {
    font-size: 1.5rem;
    padding: 0.5rem;
}

.subscription-tier-header {
    padding: 0.5rem;
}
.table{
    background-color:#e0e0e0;
}
.faq-section {
    background-color:#3779FF;
    padding: 20px;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    margin: auto;
}

.faq-title {
    text-align: center;
    margin-bottom: 20px;
}

.faq-container {
    margin: 20px 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px 0;
}

.faq-button {
    width: 100%;
    background-color: #242f61;
    color: white;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.faq-toggle {
    font-size: 20px;
}

.faq-button:hover {
    background-color: #0056b3;
    color: white;
}


.text-success {
    color: green !important;
}

.text-primary {
    color: blue !important; 
}

.row-cols-1 .col {
    display: flex;
    justify-content: center;
}

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
}


.subscription-card {
    width: 350px;
    color: black; 
    border: 0px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; 
    margin: 10px;
}

.subscription-card:hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background-color:rgb(81, 170, 243); 
    color: white; 
}
.subscription-card:hover .card-header, 
.subscription-card:hover .sub-script, 
.subscription-card:hover .card-body,
.subscription-card:hover .card-title,
.subscription-card:hover ul li {
    color: white; 

}
.subscription-card.always-hover {
    transform: scale(1.05); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    background-color:#242f61; 
    color: white; 
}
.subscription-card.always-hover .card-header, 
.subscription-card.always-hover .sub-script, 
.subscription-card.always-hover .card-body,
.subscription-card.always-hover .card-title,
.subscription-card.always-hover ul li {
    color: white; 

}
button {
    transition: background-color 0.3s ease, color 0.3s ease;
}


button:hover {
    background-color: white;
    color: #007bff; 
}

.full-width {
    background-color: #e0e0e0; 
    padding: 20px 0; 
    width: 100%; 
    margin: 0; 
}
.title-sub {
    font-size: 20px;
    font-weight: bold;
    color: #242f61;
    text-align: center;
}