body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.SRDS-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1,
h2 {
    text-align: center;
}

.SRDS-toggle {
    display: flex;
    justify-content: center;
    width: fit-content;
    background-color: #f0f0f0;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 20px;

}

.SRDS-container h1 {
    padding: 60px 0 10px 0;
    font-weight: bolder;
}

.SRDS-toggle-button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
}

.SRDS-toggle-button.SRDS-active {
    background-color: #005E54;
    color: white;
}

.SRDS-pricing-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.SRDS-pricing-card {
    flex: 1;
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.SRDS-pricing-card-header {
    padding: 20px 20px 0 20px;
    color: #333;
}


.SRDS-heading {
    position: sticky;
    top: 45px;
    z-index: 1000;
    width: 100%;
}

.SRDS-pricing-card-body {
    /* background-color: #fff; */
    padding: 10px 20px 20px 20px;
}

.SRDS-pricing-card-body h3{
    font-size: 1rem;
}

.SRDS-pricing-card-body ul {
    list-style-type: none;
    padding: 0;
}

.SRDS-pricing-card-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px; 
}

.SRDS-feature-included span,
.SRDS-feature-excluded span,
.SRDS-feature-warning span{
    font-size: 0.75rem;
}


.SRDS-pricing-card-body li.SRDS-feature-included::before {
    content: "✓";
    display: flex;
    justify-content: center; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00D2A8;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: white;
    font-size: 14px;
    margin-right: 10px;
}


.SRDS-pricing-card-body li.SRDS-feature-excluded::before {
    content: "X";
    display: flex;
    justify-content: center; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF4D4F;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: white;
    font-size: 14px;
    margin-right: 10px;
}

.SRDS-pricing-card-body li.SRDS-feature-warning::before {
    content: "—";
    display: flex;
    justify-content: center; 
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #F2AE00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #000;
    font-size: 14px;
    margin-right: 10px;
}
.SRDS-pricing-card-body li.SRDS-feature-warning::after {
    content: "i";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #828282;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
    z-index: 5;
}

.SRDS-pricing-card-body li.SRDS-feature-warning:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.SRDS-pricing-card-body li.SRDS-feature-warning .tooltip {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    width: auto;
    max-width: 250px;
    font-size: 12px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    overflow: visible;
}



.SRDS-price{
    font-weight: bolder;
}

.SRDS-button,
.get-started,
.free-forever{
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    margin-top:20px;
}

.SRDS-features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.SRDS-features-table th,
.SRDS-features-table td {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
}

.SRDS-features-table th {
    background-color: #f0f0f0;
}

.SRDS-conversation-rates {
    background-color: #005E54;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.SRDS-rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
}

.SRDS-rates-table th,
.SRDS-rates-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.SRDS-rates-table th {
    background-color: #E5FFF9;
    color: #333;
}

.SRDS-faq {
    margin-top: 40px;
}

.SRDS-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.SRDS-faq-question {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.SRDS-faq-question::after {
    content: "+";
    font-size: 20px;
}

.SRDS-faq-answer {
    display: none;
    padding: 10px 0;
}

.SRDS-cta {
    background-color: #EBF9FF;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
}

.SRDS-cta ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.SRDS-cta li {
    display: flex;
    align-items: center;
}

.SRDS-cta li::before {
    content: "✓";
    color: #00D2A8;
    margin-right: 5px;
    font-weight: bold;
}


.SRDS-table {
    width: 100%;
    border-collapse: collapse;
}

.SRDS-table th,
.SRDS-table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.75rem;
}

.SRDS-table th {
    background: #ffffff;
}

.SRDS-table tr:nth-child(even) {
    background: #ffffff;
}

.SRDS-table tr:nth-child(odd) {
    background: #E5FFF9;
}

.SRDS-table .SRDS-category td {
    background-color: #ffffff;
    font-weight: 800;
    font-size: 1.5em;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 10px;
    height: auto;
}

.SRDS-table .SRDS-features h3 {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 0;
}

.SRDS-table .SRDS-features p {
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    margin-top: 5px;
}

.SRDS-table .SRDS-features img{
    width: 20px;
    padding-right: 10px;
}
.SRDS-table .SRDS-plan-col {
     width: 20%; 
}

.SRDS-desktop-table .SRDS-plan-col .SRDS-plan div {
    font-size: 1.25em;
}

/* Responsive Table CSS */
.SRDS-responsive-table{
    display: none;
}
.SRDS-responsive-table {
    display: none;
}

@media (max-width: 992px) {
    .SRDS-rates-table{
        display: none;
    }
    .SRDS-desktop-table {
        display: none;
    }
    .SRDS-responsive-table{
       
    }  
   
    .SRDS-responsive-table {
        display: block;
        width: 100%;
        border-collapse: collapse;
        overflow-y: hidden;
        overflow-x: auto;
    }

    .SRDS-responsive-table th {
        background: #ffffff;
    }

    .SRDS-responsive-table tr:nth-child(odd) {
        background: #E5FFF9;
    }

    .SRDS-responsive-table .SRDS-features h3 {
        font-size: 16px;
    }

    .SRDS-responsive-table .SRDS-features p {
        font-size: 14px;
    }

    .SRDS-responsive-table .SRDS-plan-resp {
        margin-bottom: 20px;
        text-align: center;
    }

    .SRDS-responsive-table .SRDS-plan-resp button {
        padding: 8px 10px;
        width: 100%;
        border: 1px solid #000;
        border-radius: 25px;
        background-color: transparent;
        cursor: pointer;
        margin-top: 10px;
    }

    .SRDS-responsive-table .SRDS-plan-resp.active button {
        background-color: #4b2ef3;
        color: #fff;
        border: none;
    }


    .SRDS-responsive-table .SRDS-heading th {
        width: 100%;
    }

    .SRDS-responsive-table .SRDS-heading .SRDS-plan-resp div {
        font-size: 1.5em;
    }

    .SRDS-responsive-table .SRDS-heading th {
        border: 1px solid #ddd;
        text-align: center;
    }

    .SRDS-responsive-table .SRDS-category td {
        font-size: 1.25em;
    }

    .SRDS-responsive-table .SRDS-cat-menu td {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .SRDS-table-container {
        padding: 5px 0;
    }
}

@media (max-width: 576px) {
    .SRDS-table-container {
        padding: 5px 0;
    }

    .SRDS-responsive-table .SRDS-cat-menu td {
        padding: 0 15px;
    }

    .SRDS-responsive-table .SRDS-plan-resp {
        padding-left: 5px;
        padding-right: 5px;
    }

    .SRDS-responsive-table .SRDS-plan-resp button {
        font-size: 10px;
        padding: 5px;
    }

    .SRDS-responsive-table .SRDS-category td {
        font-size: 1.25em;
    }

    .SRDS-responsive-table .SRDS-cat-menu td h3 {
        font-size: 1em;
    }

    .SRDS-responsive-table .SRDS-cat-menu td p {
        font-size: 0.875em;
    }
}

[data-monthly], [data-yearly] {
    display: none;
}

.SRDS-monthly [data-monthly],
.SRDS-yearly [data-yearly] {
    display: inline;
}