/* ========= ITDR 核心优势标签控制轮播系统 ========= */

/* ========= 间距系统 ========= */

/* 统一的分割线间距 - 桌面端 */
.section-divider-spacing {
    margin-top: 80px !important;
    margin-bottom: 60px !important;
}

/* 第二部分介绍文本的间距 */
.itdr-section-intro {
    margin-bottom: 30px;
}

/* 容器 */
.itdr-tabs-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 0 auto;
    padding: 0 0 60px 0; /* 底部60px padding，确保与第一部分分割线间距一致 */
}

/* ========= 标签导航区域（居左） ========= */

.itdr-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: flex-start;
}

/* 标签按钮 - 统一为透明背景 + 绿色边框 */
.itdr-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(54, 201, 88, 0.25);
    border-radius: 2px;
    color: #B8B8B8;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.itdr-tab-btn:hover {
    background: transparent;
    border-color: rgba(54, 201, 88, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(54, 201, 88, 0.12), 0 0 30px rgba(54, 201, 88, 0.08);
}

.itdr-tab-btn.active {
    background: transparent;
    border-color: rgba(54, 201, 88, 0.6);
    color: #36c958;
    box-shadow: 0 4px 20px rgba(54, 201, 88, 0.2), 0 0 40px rgba(54, 201, 88, 0.1);
}

.itdr-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #36c958;
    box-shadow: 0 0 8px rgba(54, 201, 88, 0.6);
}

/* 移除顶部发光条 */
.itdr-tab-btn::before {
    display: none;
}

.tab-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2;
    color: #B8B8B8;
}

.itdr-tab-btn.active .tab-icon {
    transform: scale(1.1);
    color: #36c958;
    stroke-width: 2.5;
}

.itdr-tab-btn:hover .tab-icon {
    transform: scale(1.1);
    color: #FFFFFF;
}

.tab-label {
    white-space: nowrap;
}

/* ========= 轮播容器 ========= */

.itdr-carousel-container {
    position: relative;
    width: 100vw; /* 全屏宽度 */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
    height: 360px;
    perspective: 2000px;
    overflow: visible; /* 允许卡片延伸到容器外 */
}

.itdr-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ========= 轮播卡片 ========= */

.itdr-carousel-card {
    position: absolute;
    width: 1290px; /* 与网站内容区域实际宽度一致(1350px - 60px padding) */
    max-width: 90vw; /* 移动端不超过90%视口宽度 */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* 卡片内部容器：优化内边距和视觉效果，增强质感 */
.itdr-card-inner {
    width: 100%;
    background: #060b14;
    border: 1px solid rgba(54, 201, 88, 0.25);
    border-radius: 2px;
    padding: 52px;
    backdrop-filter: blur(100px) saturate(120%);
    -webkit-backdrop-filter: blur(100px) saturate(120%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* 卡片内部装饰性渐变 */
.itdr-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 11, 20, 0.04) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.6s ease;
    opacity: 0;
}

.itdr-card-inner:hover::before {
    opacity: 1;
}

/* 卡片点状背景装饰 */
.itdr-card-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.wuthreat.com/static/images/index/bj.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: color-dodge;
}

/* 卡片悬停效果 - 边框颜色变为选中状态，增强光影效果 */
.itdr-card-inner:hover {
    border-color: #36c958;
    box-shadow: 0 8px 32px rgba(6, 11, 20, 0.18), 0 0 48px rgba(6, 11, 20, 0.08), inset 0 1px 0 rgba(6, 11, 20, 0.1);
    transform: translateY(-2px);
}

/* 卡片内容左右布局包装器：优化间距，增强层次感 */
.itdr-card-content-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* 左侧内容区域 - 占60%，确保充足的阅读空间 */
.itdr-card-left {
    flex: 0 0 58%;
    width: 58%;
    min-width: 0;
}

/* 右侧插画区域 - 占40%，视觉平衡 */
.itdr-card-right {
    flex: 0 0 calc(42% - 40px);
    width: calc(42% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.itdr-card-illustration {
    width: 100%;
    height: auto;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(54, 201, 88, 0.05);
    border: 1px solid rgba(54, 201, 88, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.itdr-card-illustration img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* SVG插画绿色主题滤镜 */
.illustration-svg-green {
    background: transparent;
    border: none;
    padding: 20px;
}

.illustration-svg-green img {
    filter: brightness(1.1) saturate(1.2);
    opacity: 0.95;
}

.illustration-svg-green:hover img {
    filter: brightness(1.15) saturate(1.3);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 卡片头部 - 增强视觉层次，精致的分隔设计 */
.itdr-card-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* 头部底部装饰性渐变线 */
.itdr-card-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #36c958 0%, rgba(54, 201, 88, 0) 100%);
    border-radius: 2px;
    opacity: 0.6;
}

.itdr-card-icon {
    display: none;
}

.itdr-card-title-group {
    flex: 1;
}

/* 标题优化：采用现代无衬线字体，国际化支持，增强视觉权重 */
.itdr-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 14px;
    line-height: 1.35;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 副标题优化：清晰的层次区分，精致的字间距 */
.itdr-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #9CA3AF;
    line-height: 1.65;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.3px;
    opacity: 0.85;
}

/* 卡片主体：优化间距系统，增强呼吸感 */
.itdr-card-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* 特性列表：改进排版和可读性，精致的网格布局 */
.itdr-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 28px;
}

/* 特性项：易读字体和适当的行高，优化视觉舒适度 */
.itdr-card-features li {
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    font-weight: 400;
    color: #D4D4D8;
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

/* 特性项悬停效果 */
.itdr-card-features li:hover {
    color: #FFFFFF;
}

/* 绿色圆点标记 - 增强视觉精致度 */
.itdr-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #36c958 0%, #2ea84a 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(54, 201, 88, 0.5), 0 2px 4px rgba(54, 201, 88, 0.3);
    transition: all 0.3s ease;
}

/* 特性项悬停时圆点效果 */
.itdr-card-features li:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 14px rgba(54, 201, 88, 0.7), 0 2px 6px rgba(54, 201, 88, 0.4);
}

/* 引用块：突出关键信息，精致的视觉设计 */
.itdr-card-quote {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 26px 22px 28px;
    background: linear-gradient(135deg, rgba(54, 201, 88, 0.08) 0%, rgba(54, 201, 88, 0.03) 100%);
    border-left: 3px solid #36c958;
    border-radius: 2px;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
}

/* 引用块装饰性背景 */
.itdr-card-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(54, 201, 88, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* 双引号图标 - 精致的装饰性设计（水平翻转变为左侧开引号，开口朝右指向文字）*/
.itdr-card-quote i {
    color: #36c958;
    flex-shrink: 0;
    margin-top: -2px;
    opacity: 0.75;
    position: relative;
    z-index: 1;
    width: 26px !important;
    height: 26px !important;
    filter: drop-shadow(0 2px 6px rgba(54, 201, 88, 0.35));
    transition: all 0.3s ease;
    transform: scaleX(-1); /* 水平翻转，将Lucide的闭引号图标镜像为开引号 */
}

/* 引用块悬停时图标效果 */
.itdr-card-quote:hover i {
    opacity: 0.95;
    transform: scaleX(-1) scale(1.08); /* 保持水平翻转并放大 */
    filter: drop-shadow(0 3px 8px rgba(54, 201, 88, 0.45));
}

/* 引用文本：清晰易读，精致的字体样式 */
.itdr-card-quote p {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: #3dd75d;
    line-height: 1.65;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* ========= 卡片位置状态 ========= */

/* 中心卡片 */
.itdr-carousel-card[data-state="center"] {
    left: 50%;
    transform: translateX(-50%) translateZ(0) scale(1);
    z-index: 100;
    opacity: 1;
    filter: blur(0);
    pointer-events: auto;
}

.itdr-carousel-card[data-state="center"] .itdr-card-inner {
    border-color: rgba(54, 201, 88, 0.25);
    box-shadow: 0 8px 24px rgba(6, 11, 20, 0.08), 0 0 40px rgba(6, 11, 20, 0.05);
}

/* 中心卡片悬停效果 - 边框变绿色 */
.itdr-carousel-card[data-state="center"] .itdr-card-inner:hover {
    border-color: #36c958;
    box-shadow: 0 8px 32px rgba(54, 201, 88, 0.18), 0 0 48px rgba(54, 201, 88, 0.08), inset 0 1px 0 rgba(54, 201, 88, 0.1);
    transform: translateY(-2px);
}

/* 左侧第1张 */
.itdr-carousel-card[data-state="left-1"] {
    left: 15%;
    transform: translateX(-50%) translateZ(-200px) scale(0.8);
    z-index: 50;
    opacity: 0.35;
    filter: blur(1.5px);
    pointer-events: none;
}

/* 右侧第1张 */
.itdr-carousel-card[data-state="right-1"] {
    left: 85%;
    transform: translateX(-50%) translateZ(-200px) scale(0.8);
    z-index: 50;
    opacity: 0.35;
    filter: blur(1.5px);
    pointer-events: none;
}

/* 左侧第2张 */
.itdr-carousel-card[data-state="left-2"] {
    left: 0%;
    transform: translateX(-50%) translateZ(-400px) scale(0.6);
    z-index: 25;
    opacity: 0.15;
    filter: blur(3px);
    pointer-events: none;
}

/* 右侧第2张 */
.itdr-carousel-card[data-state="right-2"] {
    left: 100%;
    transform: translateX(-50%) translateZ(-400px) scale(0.6);
    z-index: 25;
    opacity: 0.15;
    filter: blur(3px);
    pointer-events: none;
}

/* 隐藏的卡片 */
.itdr-carousel-card[data-state="hidden"] {
    left: 50%;
    transform: translateX(-50%) translateZ(-600px) scale(0.4);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* ========= 响应式适配 ========= */

/* ========= 平板设备响应式优化 (768px - 1199px) ========= */
@media (max-width: 1199px) {
    /* 平板端分割线间距调整 */
    .section-divider-spacing {
        margin-top: 70px !important;
        margin-bottom: 50px !important;
    }

    /* 第二部分介绍文本间距 */
    .itdr-section-intro {
        margin-bottom: 25px;
    }

    /* 轮播容器间距 */
    .itdr-tabs-carousel-wrapper {
        margin: 0 auto 0 auto;
        padding: 0 0 50px 0; /* 底部50px padding，与平板端分割线间距匹配 */
    }

    .itdr-tabs-nav {
        gap: 10px;
        margin-bottom: 28px;
    }

    .itdr-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .tab-icon {
        font-size: 18px;
    }

    .itdr-carousel-container {
        height: 340px;
        margin-bottom: 0;
    }

    .itdr-carousel-card {
        width: 85vw; /* 平板使用85%视口宽度 */
    }

    /* 平板卡片内边距调整 */
    .itdr-card-inner {
        padding: 44px;
        border-radius: 2px;
    }

    /* 平板时插画区域调整 - 优化间距 */
    .itdr-card-content-wrapper {
        gap: 36px;
    }

    .itdr-card-left {
        flex: 0 0 58%;
        width: 58%;
    }

    .itdr-card-right {
        flex: 0 0 calc(42% - 32px);
        width: calc(42% - 32px);
    }

    .tab-icon {
        width: 16px;
        height: 16px;
    }

    /* 平板字体大小调整，保持视觉层次 */
    .itdr-card-title {
        font-size: 20px;
        margin-bottom: 12px;
        letter-spacing: 0.4px;
    }

    .itdr-card-subtitle {
        font-size: 13px;
    }

    .itdr-card-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .itdr-card-body {
        gap: 28px;
    }

    .itdr-card-features {
        gap: 18px 24px;
    }

    .itdr-card-features li {
        font-size: 13px;
        line-height: 1.68;
    }

    .itdr-card-quote {
        padding: 20px 24px 20px 26px;
        gap: 16px;
    }

    .itdr-card-quote i {
        width: 24px !important;
        height: 24px !important;
    }

    .itdr-card-quote p {
        font-size: 13px;
    }

    /* 平板时特性列表改为单列，提高可读性 */
    .itdr-card-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* 平板只显示中心和左右第1张 */
    .itdr-carousel-card[data-state="left-2"],
    .itdr-carousel-card[data-state="right-2"] {
        opacity: 0;
    }
}

/* ========= 手机设备响应式优化 (<768px) ========= */
@media (max-width: 767px) {
    /* 手机端分割线间距调整 */
    .section-divider-spacing {
        margin-top: 60px !important;
        margin-bottom: 40px !important;
    }

    /* 第二部分介绍文本间距 */
    .itdr-section-intro {
        margin-bottom: 20px;
    }

    /* 轮播容器间距 */
    .itdr-tabs-carousel-wrapper {
        margin: 0 auto 0 auto;
        padding: 0 0 40px 0; /* 底部40px padding，与手机端分割线间距匹配 */
    }

    .itdr-tabs-nav {
        gap: 8px;
        margin-bottom: 24px;
    }

    .itdr-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .tab-icon {
        font-size: 16px;
    }

    .itdr-carousel-container {
        height: 480px;
        margin-bottom: 0;
    }

    .itdr-carousel-card {
        width: 90vw; /* 手机使用90%视口宽度 */
    }

    /* 手机卡片内边距优化 */
    .itdr-card-inner {
        padding: 36px 28px;
        border-radius: 2px;
    }

    /* 手机时插画区域垂直布局 */
    .itdr-card-content-wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .itdr-card-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .itdr-card-right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .itdr-card-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .tab-icon {
        width: 14px;
        height: 14px;
    }

    /* 手机字体大小优化，保持层次感 */
    .itdr-card-title {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
    }

    .itdr-card-subtitle {
        font-size: 13px;
        line-height: 1.65;
    }

    .itdr-card-body {
        gap: 24px;
    }

    .itdr-card-features {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .itdr-card-features li {
        font-size: 13px;
        line-height: 1.68;
        padding-left: 24px;
    }

    .itdr-card-features li::before {
        top: 9px;
    }

    .itdr-card-quote {
        padding: 18px 22px 18px 24px;
        gap: 14px;
    }

    .itdr-card-quote i {
        width: 22px !important;
        height: 22px !important;
        margin-top: -1px;
    }

    .itdr-card-quote p {
        font-size: 13px;
    }

    /* 手机只显示中心卡片 */
    .itdr-carousel-card[data-state="left-1"],
    .itdr-carousel-card[data-state="right-1"],
    .itdr-carousel-card[data-state="left-2"],
    .itdr-carousel-card[data-state="right-2"] {
        opacity: 0;
    }
}

/* ========= 超小屏手机优化 (<480px) ========= */
@media (max-width: 479px) {
    /* 超小屏分割线间距调整 */
    .section-divider-spacing {
        margin-top: 50px !important;
        margin-bottom: 35px !important;
    }

    /* 第二部分介绍文本间距 */
    .itdr-section-intro {
        margin-bottom: 15px;
    }

    /* 轮播容器间距 */
    .itdr-tabs-carousel-wrapper {
        margin: 0 auto 0 auto;
        padding: 0 0 30px 0; /* 底部30px padding，与超小屏分割线间距匹配 */
    }

    .itdr-carousel-container {
        margin-bottom: 0;
    }

    .itdr-tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .itdr-carousel-card {
        width: 92vw; /* 超小屏使用92%视口宽度 */
    }

    /* 超小屏内边距调整 */
    .itdr-card-inner {
        padding: 28px 20px;
    }

    /* 超小屏字体微调 */
    .itdr-card-title {
        font-size: 17px;
    }

    .itdr-card-subtitle {
        font-size: 13px;
    }

    .itdr-card-features li {
        font-size: 13px;
    }

    .itdr-card-quote p {
        font-size: 13px;
    }
}

/* ========= 动画效果 ========= */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.itdr-carousel-card[data-state="center"] .itdr-card-inner {
    animation: slideIn 0.5s ease-out;
}

/* 禁用触摸设备上的模糊效果（性能优化）*/
@media (hover: none) {
    .itdr-carousel-card {
        filter: none !important;
    }
}

/* 减少动画（用户偏好）*/
@media (prefers-reduced-motion: reduce) {
    .itdr-carousel-card,
    .itdr-tab-btn {
        transition: none;
    }

    .itdr-carousel-card[data-state="center"] .itdr-card-inner {
        animation: none;
    }
}

/* ========= 国际化和可读性增强 ========= */

/* 支持 CJK（中日韩）字符的行高优化 */
.itdr-card-title,
.itdr-card-subtitle,
.itdr-card-features li,
.itdr-card-quote p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* 文本选中样式（品牌色） */
.itdr-card-inner ::selection {
    background: rgba(54, 201, 88, 0.2);
    color: #FFFFFF;
}

.itdr-card-inner ::-moz-selection {
    background: rgba(54, 201, 88, 0.2);
    color: #FFFFFF;
}

/* 确保长单词（如德语/俄语）的换行处理 */
.itdr-card-features li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* 深色模式优化 - 提高对比度 */
@media (prefers-color-scheme: dark) {
    .itdr-card-title {
        color: #FFFFFF;
    }

    .itdr-card-subtitle {
        color: #CCCCCC;
    }

    .itdr-card-features li {
        color: #D8D8D8;
    }
}

/* 高对比度模式支持（无障碍访问） */
@media (prefers-contrast: high) {
    .itdr-card-inner {
        border-color: rgba(54, 201, 88, 0.5);
    }

    .itdr-card-title {
        color: #FFFFFF;
    }

    .itdr-card-features li {
        color: #EFEFEF;
    }

    .itdr-card-quote {
        border-left-width: 4px;
    }
}

/* 大屏幕桌面优化 (>1600px) */
@media (min-width: 1600px) {
    .itdr-card-inner {
        padding: 56px;
    }

    .itdr-card-title {
        font-size: 22px;
    }

    .itdr-card-subtitle {
        font-size: 16px;
    }

    .itdr-card-features li {
        font-size: 16px;
    }

    .itdr-card-quote p {
        font-size: 16px;
    }
}
