* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gold: #f39c12;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --purple: #8e44ad;
    --orange: #e67e22;
    --teal: #1abc9c;
    --dark-blue: #2c3e50;
    --whatsapp-green: #25D366;
    --email-blue: #4285F4;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.inner_page {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
}

.inner_page_width {
    display: flex;
    flex-direction: row;
    gap: 20;
    padding: 20px;
    width: 100%;
}

@media (max-width: 992px) {
    .inner_page_width {
        flex-direction: column;
    }
}

.inner_page_content_wrapper {
    min-height: 600px;
    width: 100%;
    flex: 1;
}

.terms_tabs {
    width: 100%;
}

.terms_tabs nav {
    display: flex;
    flex-direction: row;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 30px;
    gap: 5px;
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .terms_tabs nav {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.terms_tabs nav a {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.terms_tabs nav a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}

.terms_tabs nav a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    background-color: #f8f9fa;
}

.text_holder_block {
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
}

.text_holder_block > p {
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
    width: 100%;
}

.accordion {
    margin-top: 20px;
    width: 100%;
}

.accordion_item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    width: 100%;
}

.accordion_item_title {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.accordion_item_title:hover {
    background: linear-gradient(135deg, #2980b9, var(--secondary-color));
}

.accordion_arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    transition: transform 0.3s ease;
}

.accordion_item.active .accordion_arrow {
    transform: rotate(180deg);
}

.accordion_item_content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.accordion_item.active .accordion_item_content {
    padding: 20px;
    max-height: 2000px;
}

.accordion_item_content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.accordion_item_content .list {
    margin: 15px 0;
    padding-left: 25px;
}

.accordion_item_content .list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.inner_page_sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    width: 450px;
}

@media (max-width: 992px) {
    .inner_page_sidebar {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .inner_page_sidebar {
        width: 450px;
    }
}
.widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
    width: 100%;
}

.widget_title {
    background: linear-gradient(135deg, var(--purple), #9b59b6);
    color: white;
    padding: 18px;
    text-align: center;
}

.widget_title h2 {
    font-size: 1.4rem;
    margin: 0;
}

.widget_content {
    padding: 18px;
}

.free_feature_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.free_feature_item:last-child {
    border-bottom: none;
}

.free_feature_item.all_features {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 18px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px solid var(--success-color);
}

.free_feature_title {
    flex: 1;
    min-width: 0;
}

.free_feature_title b {
    color: var(--primary-color);
    font-size: 14px;
    display: block;
    word-wrap: break-word;
}

.free_feature_title span {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.free_feature_title p {
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: line-through;
    margin: 0;
    font-size: 12px;
}

.free_feature_price {
    margin-left: 10px;
}

.free_feature_price span {
    background: var(--success-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
}

.orange_button {
    background: linear-gradient(180deg,#ff6d1b,#ff6d1b);
    border: 1px solid #df5609;
    color: white;
    box-shadow: 0 0 0 4px rgba(255,109,27,.15),0 1px 2px 0 rgba(41,16,8,.15),0 3px 7px 0 rgba(41,16,8,.08),inset 0 2px 2px 0 rgba(255,212,188,.5);
}

.orange_button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ff5f1b, #fd450b);
}
.terms_testimonials_widget {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    overflow: hidden;
    width: 100%;
}

.terms_testimonials_container {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .terms_testimonials_container {
        height: 450px;
    }
}

.terms_testimonials_track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.terms_testimonial_slide {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    min-width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.terms_testimonial_content {
    padding: 18px;
    position: relative;
}

.terms_testimonial_rating {
    margin-bottom: 12px;
    text-align: center;
}

.terms_rating_container {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.terms_rating_item {
    width: 18px;
    height: 18px;
    background: #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.terms_rating_item:hover {
    transform: scale(1.2);
    background: var(--teal);
}

.terms_rating_item.active {
    background: var(--gold);
}

.terms_rating_item.active:hover {
    background: var(--teal);
}

.terms_rating_item.active::before {
    content: "★";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
}

.terms_testimonial_text {
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: center;
    position: relative;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover .terms_testimonial_text {
    color: var(--dark-blue);
}

.terms_testimonial_text:before {
    content: """";
    font-size: 40px;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover .terms_testimonial_text:before {
    color: var(--teal);
    opacity: 0.4;
}

.terms_testimonial_footer {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover .terms_testimonial_footer {
    border-top-color: var(--teal);
}

.terms_testimonial_author {
    margin-bottom: 5px;
}

.terms_testimonial_author span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 15px;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover .terms_testimonial_author span {
    color: var(--teal);
}

.terms_testimonial_author p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.terms_testimonial_details span {
    color: var(--secondary-color);
    font-size: 13px;
    transition: all 0.3s ease;
}

.terms_testimonial_slide:hover .terms_testimonial_details span {
    color: var(--teal);
}

/* Carousel Navigation */
.terms_testimonials_nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.terms_testimonials_indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms_testimonials_indicator:hover {
    background-color: var(--teal);
    transform: scale(1.3);
}

.terms_testimonials_indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.terms_testimonials_indicator.active:hover {
    background-color: var(--teal);
}

.terms_testimonials_control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.terms_testimonials_control:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.1);
    color: var(--teal);
}

.terms_testimonials_control.left {
    left: 10px;
}

.terms_testimonials_control.right {
    right: 10px;
}

.terms_testimonials_control i {
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.terms_testimonials_control:hover i {
    color: var(--teal);
}

/* Contact widget styles */
.contact_widget .widget_content {
    padding: 18px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact_item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding-left: 8px;
}

.contact_item:last-child {
    border-bottom: none;
}

.contact_item i {
    font-size: 18px;
    color: var(--secondary-color);
    width: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact_item:hover i {
    transform: scale(1.2);
    color: var(--teal);
}

.contact_item .fab.fa-whatsapp {
    color: #25d366;
}

.contact_item .fas.fa-envelope {
    color: var(--accent-color);
}

.contact_item .fas.fa-clock {
    color: var(--success-color);
}

.contact_item div {
    flex-grow: 1;
}

.contact_item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 3px;
    font-size: 14px;
}

.contact_item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    word-break: break-all;
    transition: all 0.3s ease;
}

.contact_item a:hover {
    text-decoration: underline;
    color: var(--teal);
}

.contact_item span {
    color: #666;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .inner_page_width {
        padding: 15px;
    }

    .terms_tabs nav {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .terms_tabs nav a {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .accordion_item_title {
        font-size: 14px;
        padding: 15px;
    }

    .free_feature_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .terms_testimonials_carousel {
        height: 400px;
    }

    .terms_carousel_arrow {
        width: 35px;
        height: 35px;
    }
    
    .terms_carousel_arrow.left {
        left: 5px;
    }
    
    .terms_carousel_arrow.right {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .inner_page_width {
        padding: 10px;
    }
    
    .free_feature_title b {
        font-size: 13px;
    }
    
    .free_feature_price span {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .accordion_item_title {
        padding: 12px;
        font-size: 13px;
    }
    
    .accordion_item.active .accordion_item_content {
        padding: 15px;
    }
    
    .terms_testimonials_carousel {
        height: 420px;
    }
    
    .terms_testimonial_content {
        font-size: 0.9rem;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Smooth scrolling for quick links */
html {
    scroll-behavior: smooth;
}

/* Animation for widget loading */
.widget {
    animation: fadeInUp 0.6s ease-out;
}

.widget:nth-child(2) {
    animation-delay: 0.2s;
}

.widget:nth-child(3) {
    animation-delay: 0.4s;
}

.widget:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.contact-button {
    display: block;
    text-decoration: none;
    width: 100%;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.contact_button_content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact_button_text {
    display: flex;
    flex-direction: column;
}
.contact_button_text strong {
    font-size: 16px;
    margin-bottom: 3px;
}
.whatsapp-contact-button {
    background-color: var(--whatsapp-green);
    color: white;
}
.whatsapp-contact-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.email-contact-button {
    background-color: var(--email-blue);
    color: white;
}
.email-contact-button:hover {
    background-color: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}
.contact-button i {
    font-size: 24px;
}

.sidebar-header {
    background: #000;
    color: #fff;
    padding: 12px;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .sidebar-header i {
    color: #0abf53; /* green star */
    font-size: 24px;
  }

  /* Reviews */
  .reviews {
    margin: 12px 0;
    font-size: 16px;
    color: #222;
  }

  .reviews .stars {
    color: #ffcc00; /* yellow stars */
    margin-right: 6px;
  }

  .reviews span {
    color: #e67e22; /* orange text for count */
    font-weight: bold;
  }

  /* Price */
  .price-text {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
  }

  .price {
    font-size: 64px;
    font-weight: bold;
    margin: 5px 0;
  }

  .price small {
    font-size: 30px;
    vertical-align: super;
  }

  .details {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
  }

  /* Trusted Site badge */
  .trusted {
    margin: 15px 0;
  }

  .trusted img {
    max-width: 150px;
  }

  /* Button */
  .order-btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: background 0.3s;
  }

  .order-btn:hover {
    background: #219150;
  }

  /* Info text */
  .info {
    font-size: 13px;
    color: #111;
    padding: 0 15px 20px;
    line-height: 1.5;
  }
  .ad_security-badge {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
          padding: 10px;
          background: #f8f9fa;
          border-radius: 4px;
          margin-bottom: 15px;
          font-size: 13px;
          font-weight: bold;
          color: #2c3e50;
      }
      
      .ad_security-badge i {
          color: #3498db;
      }