@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=JetBrains+Mono:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }


        .tc827-wrapper {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
	min-height: 100vh;
	padding: 40px 20px;
	position: relative;
	overflow-x: hidden;
	width: 100%;
	border-radius: 16px;
}

        .tc807-background-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            z-index: 1;
            animation: tc807-background-float 20s ease-in-out infinite;
        }

        @keyframes tc807-background-float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        .tc807-floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .tc807-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: tc807-float-particle 15s infinite linear;
        }

        @keyframes tc807-float-particle {
            0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(100px) rotate(360deg); opacity: 0; }
        }

        .tc807-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }

        .tc807-header-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.15),
                0 16px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .tc807-header-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 3s ease;
        }

        .tc807-header-card:hover::before {
            left: 100%;
        }

        .tc807-main-title {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
            font-family: 'Playfair Display', serif;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

     .tc807-subtitle {
	font-size: 11px;
	color: #64748b;
	font-weight: 600;
	line-height: 1.6;
	font-family: 'Poppins', sans-serif;
}

        .tc807-countdown-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.15),
                0 16px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .tc807-countdown-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
            border-radius: 32px 32px 0 0;
        }

        .tc807-countdown-title {
            font-size: 32px;
            font-weight: 800;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Playfair Display', serif;
            position: relative;
        }

        .tc807-countdown-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #f5576c);
            border-radius: 3px;
        }

        .tc807-countdown-display {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .tc807-time-unit {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 24px;
            padding: 32px 20px;
            text-align: center;
            color: white;
            box-shadow: 
                0 16px 32px rgba(102, 126, 234, 0.4),
                0 8px 16px rgba(118, 75, 162, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tc807-time-unit::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tc807-time-unit:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 
                0 24px 48px rgba(102, 126, 234, 0.5),
                0 12px 24px rgba(118, 75, 162, 0.4);
        }

        .tc807-time-unit:hover::before {
            opacity: 1;
        }

        .tc807-time-number {
            font-size: 40px;
            font-weight: 900;
            display: block;
            margin-bottom: 12px;
            font-family: 'JetBrains Mono', monospace;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .tc807-time-label {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.95;
            font-family: 'Poppins', sans-serif;
        }

        .tc807-progress-section {
            margin-bottom: 40px;
        }

        .tc807-progress-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
            font-weight: 600;
            color: #475569;
            font-family: 'Poppins', sans-serif;
        }

        .tc807-progress-bar-container {
            width: 100%;
            height: 16px;
            background: linear-gradient(90deg, #e2e8f0, #f1f5f9, #e2e8f0);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .tc807-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
            border-radius: 16px;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
        }

        .tc807-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: tc807-shine 3s infinite;
        }

        @keyframes tc807-shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .tc807-controls-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .tc807-control-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .tc807-control-card:hover {
            transform: translateY(-4px);
        }

        .tc807-control-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 24px;
            text-align: center;
            font-family: 'Playfair Display', serif;
        }

        .tc807-current-time {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 24px;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .tc807-timezone-select {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            background: white;
            font-size: 16px;
            font-weight: 600;
            color: #475569;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .tc807-timezone-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
        }

        .tc807-custom-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

/*         .tc807-time-input {
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            background: white;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            color: #475569;
            transition: all 0.3s ease;
            font-family: 'JetBrains Mono', monospace;
        } */

        .tc807-time-input {
	padding: 16px 20px;
	border: 2px solid #e2e8f0;
	border-radius: 16px;
	background: white;
	font-size: 20px !important;
	font-weight: 700;
	text-align: center;
	color: #475569;
	transition: all 0.3s ease;
	font-family: 'JetBrains Mono', monospace;
}

        .tc807-time-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
        }

        .tc807-custom-button {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
        }

        .tc807-custom-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
        }

        .tc807-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .tc807-feature-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .tc807-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #f5576c);
            border-radius: 24px 24px 0 0;
        }

        .tc807-feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.18),
                0 16px 32px rgba(0, 0, 0, 0.12);
        }

        .tc807-feature-title {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 24px;
            text-align: center;
            font-family: 'Playfair Display', serif;
        }

        /* Beautiful Realistic Clock - FIXED DESIGN */
        .tc807-analog-clock {
            width: 240px;
            height: 240px;
            border: 16px solid #1e293b;
            border-radius: 50%;
            position: relative;
            margin: 0 auto 20px;
            background: 
                radial-gradient(circle at 35% 35%, #ffffff 0%, #f8fafc 30%, #e2e8f0 70%, #cbd5e1 100%);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.4),
                0 15px 30px rgba(0, 0, 0, 0.3),
                inset 0 8px 16px rgba(255, 255, 255, 0.9),
                inset 0 -8px 16px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .tc807-analog-clock::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid rgba(30, 41, 59, 0.1);
            border-radius: 50%;
            background: 
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
        }

/*         .tc807-clock-face {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        } */

       .tc807-clock-face {
	position: absolute;
	top: -26px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

        .tc807-clock-numbers {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .tc807-clock-number {
            position: absolute;
            font-size: 18px;
            font-weight: 900;
            color: #1e293b;
            font-family: 'JetBrains Mono', monospace;
            transform: translate(-50%, -50%);
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
            z-index: 6;
        }

        .tc807-hour-marks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .tc807-hour-mark {
            position: absolute;
            width: 4px;
            height: 25px;
            background: linear-gradient(180deg, #1e293b 0%, #475569 100%);
            left: 50%;
            margin-left: -2px;
            transform-origin: 50% 120px;
            top: 16px;
            border-radius: 2px;
            box-shadow: 
                0 3px 6px rgba(0, 0, 0, 0.4),
                inset 0 1px 2px rgba(255, 255, 255, 0.3);
        }

        .tc807-minute-mark {
            position: absolute;
            width: 2px;
            height: 15px;
            background: linear-gradient(180deg, #64748b 0%, #94a3b8 100%);
            left: 50%;
            margin-left: -1px;
            transform-origin: 50% 120px;
            top: 26px;
            border-radius: 1px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .tc807-clock-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: 
                radial-gradient(circle, #1e293b 0%, #475569 70%, #64748b 100%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            box-shadow: 
                0 6px 12px rgba(0, 0, 0, 0.5),
                inset 0 3px 6px rgba(255, 255, 255, 0.4),
                inset 0 -3px 6px rgba(0, 0, 0, 0.3);
            border: 3px solid #ffffff;
        }

        .tc807-clock-hand {
            position: absolute;
            transform-origin: bottom center;
            border-radius: 6px;
            box-shadow: 
                0 6px 12px rgba(0, 0, 0, 0.5),
                inset 0 2px 4px rgba(255, 255, 255, 0.3);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .tc807-hour-hand {
            width: 8px;
            height: 70px;
            top: 50px;
            left: 50%;
            margin-left: -4px;
            background: linear-gradient(180deg, #1e293b 0%, #475569 50%, #64748b 100%);
            border-radius: 4px;
            z-index: 12;
        }

        .tc807-minute-hand {
            width: 6px;
            height: 90px;
            top: 30px;
            left: 50%;
            margin-left: -3px;
            background: linear-gradient(180deg, #1e293b 0%, #475569 50%, #64748b 100%);
            border-radius: 3px;
            z-index: 13;
        }

        .tc807-second-hand {
            width: 3px;
            height: 100px;
            top: 20px;
            left: 50%;
            margin-left: -1.5px;
            background: linear-gradient(180deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
            border-radius: 1.5px;
            z-index: 14;
            box-shadow: 
                0 4px 8px rgba(239, 68, 68, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .tc807-digital-time {
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            color: #475569;
            font-family: 'JetBrains Mono', monospace;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tc807-stats-grid {
            display: grid;
            gap: 16px;
        }

        .tc807-stat-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-radius: 12px;
            border-left: 4px solid #667eea;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
        }

        .tc807-stat-item:hover {
            transform: translateX(4px);
        }

        .tc807-stat-label {
            font-size: 14px;
            font-weight: 600;
            color: #64748b;
            font-family: 'Poppins', sans-serif;
        }

        .tc807-stat-value {
            font-size: 16px;
            font-weight: 800;
            color: #1e293b;
            font-family: 'JetBrains Mono', monospace;
        }

        .tc807-content-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            padding: 50px;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.15),
                0 16px 32px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .tc807-content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe);
            border-radius: 32px 32px 0 0;
        }

        .tc807-content-title {
            font-size: 40px;
            font-weight: 900;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
            position: relative;
        }

        .tc807-content-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #f5576c);
            border-radius: 4px;
        }

        .tc807-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 50px;
        }

        .tc807-content-card {
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-radius: 20px;
            padding: 32px;
            border-left: 6px solid #667eea;
            box-shadow: 
                0 12px 24px rgba(0, 0, 0, 0.08),
                0 4px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tc807-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent);
            border-radius: 0 20px 0 100px;
        }

        .tc807-content-card:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(0, 0, 0, 0.08);
        }

        .tc807-content-card-title {
            font-size: 24px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            position: relative;
            z-index: 1;
        }

        .tc807-content-text {
            font-size: 16px;
            line-height: 1.7;
            color: #475569;
            margin-bottom: 20px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            z-index: 1;
        }

        .tc807-content-list {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .tc807-list-item {
            font-size: 15px;
            color: #64748b;
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        .tc807-list-item::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: 800;
            font-size: 16px;
        }

        .tc807-keyword-highlight {
            color: #667eea;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tc807-faq-section {
            margin-top: 50px;
        }

        .tc807-faq-title {
            font-size: 32px;
            font-weight: 800;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Playfair Display', serif;
        }

        .tc807-faq-grid {
            display: grid;
            gap: 24px;
        }

        .tc807-faq-item {
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .tc807-faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .tc807-faq-question {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif;
        }

        .tc807-faq-answer {
            font-size: 15px;
            line-height: 1.6;
            color: #64748b;
            font-family: 'Poppins', sans-serif;
        }

    /*────────────────────────────────────────
   Responsive Media Queries for All Elements
   Breakpoints: 992px, 768px, 600px, 400px, 375px
   These rules override your existing “.tc807-…” and “.tc827-…” base styles.
────────────────────────────────────────*/

/*────────── ≤ 992px ──────────*/
@media (max-width: 992px) {
  /* Wrapper padding */
  .tc827-wrapper {
    padding: 30px 15px !important;
  }
  /* Header Card */
  .tc807-header-card {
    padding: 40px 30px !important;
    margin-bottom: 30px !important;
  }
  .tc807-main-title {
    font-size: 36px !important;
    margin-bottom: 16px !important;
  }
  .tc807-subtitle {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
  /* Countdown Card */
  .tc807-countdown-card {
    padding: 40px 30px !important;
    margin-bottom: 30px !important;
  }
  .tc807-countdown-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc807-countdown-display {
    gap: 20px !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  }
  .tc807-time-unit {
    padding: 28px 16px !important;
  }
  .tc807-time-number {
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }
  .tc807-time-label {
    font-size: 12px !important;
  }
  /* Progress Section */
  .tc807-progress-section {
    margin-bottom: 30px !important;
  }
  .tc807-progress-info {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc807-progress-bar-container {
    height: 14px !important;
  }
  /* Controls Grid becomes two columns */
  .tc807-controls-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 30px !important;
  }
  .tc807-control-card {
    padding: 28px 24px !important;
  }
  .tc807-control-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc807-current-time {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
  .tc807-timezone-select {
    font-size: 14px !important;
    padding: 14px 18px !important;
  }
  .tc807-custom-inputs {
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  .tc807-time-input {
    font-size: 18px !important;
    padding: 14px 18px !important;
  }
  .tc807-custom-button {
    font-size: 14px !important;
    padding: 14px 28px !important;
  }
  /* Features Grid ↓ two columns */
  .tc807-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .tc807-feature-card {
    padding: 28px 24px !important;
  }
  .tc807-feature-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  /* Analog Clock: scale down to max-width: 200px */
  .tc807-analog-clock {
    width: 100% !important;
    max-width: 200px !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    margin-bottom: 16px !important;
    border-width: 12px !important;
  }
  .tc807-analog-clock::before {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    border-width: 1.5px !important;
  }
  /* Hour marks & minute marks reposition relative to scaled clock */
  .tc807-hour-mark {
    width: 3% !important;
    height: 12% !important;
    transform-origin: 50% 75% !important;
    top: 6% !important;
  }
  .tc807-minute-mark {
    width: 1.5% !important;
    height: 8% !important;
    transform-origin: 50% 75% !important;
    top: 10% !important;
  }
  /* Center, Hour/Minute/Second hands scale */
  .tc807-clock-center {
    width: 5% !important;
    height: 5% !important;
  }
  .tc807-hour-hand {
    width: 5% !important;
    height: 25% !important;
    top: 45% !important;
    margin-left: -2.5% !important;
  }
  .tc807-minute-hand {
    width: 4% !important;
    height: 35% !important;
    top: 30% !important;
    margin-left: -2% !important;
  }
  .tc807-second-hand {
    width: 2% !important;
    height: 40% !important;
    top: 25% !important;
    margin-left: -1% !important;
  }
  .tc807-digital-time {
    font-size: 16px !important;
    margin-top: 6px !important;
  }
  /* Stats Grid */
  .tc807-stats-grid {
    gap: 12px !important;
  }
  .tc807-stat-item {
    padding: 12px 16px !important;
  }
  .tc807-stat-label {
    font-size: 13px !important;
  }
  .tc807-stat-value {
    font-size: 14px !important;
  }
  /* Content Section */
  .tc807-content-section {
    padding: 40px 30px !important;
  }
  .tc807-content-title {
    font-size: 32px !important;
    margin-bottom: 32px !important;
  }
  .tc807-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .tc807-content-card {
    padding: 28px 24px !important;
  }
  .tc807-content-card-title {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }
  .tc807-content-text {
    font-size: 14px !important;
    margin-bottom: 16px !important;
  }
  .tc807-list-item {
    font-size: 13px !important;
    padding-left: 20px !important;
  }
  .tc807-list-item::before {
    font-size: 14px !important;
  }
  /* FAQ Section */
  .tc807-faq-section {
    margin-top: 40px !important;
  }
  .tc807-faq-title {
    font-size: 28px !important;
    margin-bottom: 32px !important;
  }
  .tc807-faq-grid {
    gap: 20px !important;
  }
  .tc807-faq-item {
    padding: 20px !important;
  }
  .tc807-faq-question {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .tc807-faq-answer {
    font-size: 13px !important;
  }
}

/*────────── ≤ 768px ──────────*/
@media (max-width: 768px) {
  .tc827-wrapper {
    padding: 25px 12px !important;
  }
  .tc807-header-card {
    padding: 32px 24px !important;
    margin-bottom: 24px !important;
  }
  .tc807-main-title {
    font-size: 28px !important;
    margin-bottom: 12px !important;
  }
  .tc807-subtitle {
    font-size: 11px !important;
  }
  .tc807-countdown-card {
    padding: 32px 24px !important;
    margin-bottom: 24px !important;
  }
  .tc807-countdown-title {
    font-size: 24px !important;
    margin-bottom: 28px !important;
  }
  .tc807-countdown-display {
    gap: 16px !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
  }
  .tc807-time-unit {
    padding: 24px 14px !important;
  }
  .tc807-time-number {
    font-size: 28px !important;
  }
  .tc807-time-label {
    font-size: 12px !important;
  }
  .tc807-progress-section {
    margin-bottom: 28px !important;
  }
  .tc807-progress-info {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }
  .tc807-progress-bar-container {
    height: 12px !important;
  }
  .tc807-controls-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .tc807-control-card {
    padding: 24px 20px !important;
  }
  .tc807-control-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }
  .tc807-current-time {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  .tc807-timezone-select {
    font-size: 13px !important;
    padding: 12px 14px !important;
  }
  .tc807-custom-inputs {
    gap: 10px !important;
    margin-bottom: 20px !important;
  }
  .tc807-time-input {
    font-size: 18px !important;
    padding: 12px 14px !important;
  }
  .tc807-custom-button {
    font-size: 14px !important;
    padding: 12px 24px !important;
  }
  .tc807-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 32px !important;
  }
  .tc807-feature-card {
    padding: 24px 20px !important;
  }
  .tc807-feature-title {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }

  /* Analog Clock → max-width: 160px */
  .tc807-analog-clock {
    max-width: 160px !important;
    border-width: 10px !important;
    margin-bottom: 12px !important;
  }
  .tc807-analog-clock::before {
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    border-width: 1.2px !important;
  }
  .tc807-hour-mark {
    width: 3% !important;
    height: 10% !important;
    transform-origin: 50% 80% !important;
    top: 8% !important;
  }
  .tc807-minute-mark {
    width: 1.2% !important;
    height: 7% !important;
    transform-origin: 50% 80% !important;
    top: 12% !important;
  }
  .tc807-clock-center {
    width: 6% !important;
    height: 6% !important;
  }
  .tc807-hour-hand {
    width: 5% !important;
    height: 25% !important;
    top: 45% !important;
    margin-left: -2.5% !important;
  }
  .tc807-minute-hand {
    width: 4% !important;
    height: 35% !important;
    top: 30% !important;
    margin-left: -2% !important;
  }
  .tc807-second-hand {
    width: 2% !important;
    height: 40% !important;
    top: 25% !important;
    margin-left: -1% !important;
  }
  .tc807-digital-time {
    font-size: 15px !important;
  }
  .tc807-stats-grid {
    gap: 10px !important;
  }
  .tc807-stat-item {
    padding: 10px 14px !important;
  }
  .tc807-stat-label {
    font-size: 12px !important;
  }
  .tc807-stat-value {
    font-size: 14px !important;
  }
  .tc807-content-section {
    padding: 32px 24px !important;
  }
  .tc807-content-title {
    font-size: 28px !important;
    margin-bottom: 28px !important;
  }
  .tc807-content-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }
  .tc807-content-card {
    padding: 24px 20px !important;
  }
  .tc807-content-card-title {
    font-size: 18px !important;
    margin-bottom: 14px !important;
  }
  .tc807-content-text {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }
  .tc807-list-item {
    font-size: 13px !important;
    padding-left: 20px !important;
  }
  .tc807-list-item::before {
    font-size: 14px !important;
  }
  .tc807-faq-section {
    margin-top: 32px !important;
  }
  .tc807-faq-title {
    font-size: 24px !important;
    margin-bottom: 28px !important;
  }
  .tc807-faq-grid {
    gap: 16px !important;
  }
  .tc807-faq-item {
    padding: 18px !important;
  }
  .tc807-faq-question {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .tc807-faq-answer {
    font-size: 13px !important;
  }
}

/*────────── ≤ 600px ──────────*/
@media (max-width: 600px) {
  .tc827-wrapper {
    padding: 20px 10px !important;
  }
  .tc807-header-card {
    padding: 28px 20px !important;
    margin-bottom: 20px !important;
  }
  .tc807-main-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }
  .tc807-subtitle {
    font-size: 10px !important;
  }
  .tc807-countdown-card {
    padding: 28px 20px !important;
    margin-bottom: 20px !important;
  }
  .tc807-countdown-title {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }
  .tc807-countdown-display {
    gap: 12px !important;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)) !important;
  }
  .tc807-time-unit {
    padding: 20px 12px !important;
  }
  .tc807-time-number {
    font-size: 24px !important;
  }
  .tc807-time-label {
    font-size: 10px !important;
  }
  .tc807-progress-section {
    margin-bottom: 24px !important;
  }
  .tc807-progress-info {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }
  .tc807-progress-bar-container {
    height: 10px !important;
  }
  .tc807-controls-grid {
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .tc807-control-card {
    padding: 20px 16px !important;
  }
  .tc807-control-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-current-time {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }
  .tc807-timezone-select {
    font-size: 12px !important;
    padding: 10px 12px !important;
  }
  .tc807-custom-inputs {
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .tc807-time-input {
    font-size: 16px !important;
    padding: 10px 12px !important;
  }
  .tc807-custom-button {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
  .tc807-features-grid {
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .tc807-feature-card {
    padding: 20px 16px !important;
  }
  .tc807-feature-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Analog Clock → max-width: 140px */
  .tc807-analog-clock {
    max-width: 140px !important;
    border-width: 8px !important;
    margin-bottom: 8px !important;
  }
  .tc807-analog-clock::before {
    top: 5px !important;
    left: 5px !important;
    right: 5px !important;
    bottom: 5px !important;
    border-width: 1px !important;
  }
  .tc807-hour-mark {
    width: 3% !important;
    height: 8% !important;
    transform-origin: 50% 75% !important;
    top: 8% !important;
  }
  .tc807-minute-mark {
    width: 1% !important;
    height: 6% !important;
    transform-origin: 50% 75% !important;
    top: 12% !important;
  }
  .tc807-clock-center {
    width: 6% !important;
    height: 6% !important;
  }
  .tc807-hour-hand {
    width: 5% !important;
    height: 25% !important;
    top: 45% !important;
    margin-left: -2.5% !important;
  }
  .tc807-minute-hand {
    width: 4% !important;
    height: 35% !important;
    top: 30% !important;
    margin-left: -2% !important;
  }
  .tc807-second-hand {
    width: 2% !important;
    height: 40% !important;
    top: 25% !important;
    margin-left: -1% !important;
  }
  .tc807-digital-time {
    font-size: 14px !important;
  }
  .tc807-stats-grid {
    gap: 8px !important;
  }
  .tc807-stat-item {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
  .tc807-stat-label {
    font-size: 11px !important;
  }
  .tc807-stat-value {
    font-size: 14px !important;
  }
  .tc807-content-section {
    padding: 24px 20px !important;
  }
  .tc807-content-title {
    font-size: 24px !important;
    margin-bottom: 24px !important;
  }
  .tc807-content-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }
  .tc807-content-card {
    padding: 20px 16px !important;
  }
  .tc807-content-card-title {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .tc807-content-text {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }
  .tc807-list-item {
    font-size: 12px !important;
    padding-left: 20px !important;
  }
  .tc807-list-item::before {
    font-size: 13px !important;
  }
  .tc807-faq-section {
    margin-top: 28px !important;
  }
  .tc807-faq-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc807-faq-grid {
    gap: 12px !important;
  }
  .tc807-faq-item {
    padding: 16px !important;
  }
  .tc807-faq-question {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  .tc807-faq-answer {
    font-size: 12px !important;
  }
}

/*────────── ≤ 400px ──────────*/
@media (max-width: 400px) {
  .tc827-wrapper {
    padding: 16px 8px !important;
  }
  .tc807-header-card {
    padding: 24px 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-main-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }
  .tc807-subtitle {
    font-size: 10px !important;
  }
  .tc807-countdown-card {
    padding: 24px 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-countdown-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }
  .tc807-countdown-display {
    gap: 8px !important;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)) !important;
  }
  .tc807-time-unit {
    padding: 16px 10px !important;
  }
  .tc807-time-number {
    font-size: 20px !important;
  }
  .tc807-time-label {
    font-size: 10px !important;
  }
  .tc807-progress-section {
    margin-bottom: 20px !important;
  }
  .tc807-progress-info {
    font-size: 10px !important;
    margin-bottom: 10px !important;
  }
  .tc807-progress-bar-container {
    height: 8px !important;
  }
  .tc807-controls-grid {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .tc807-control-card {
    padding: 20px 12px !important;
  }
  .tc807-control-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-current-time {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc807-timezone-select {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }
  .tc807-custom-inputs {
    gap: 6px !important;
    margin-bottom: 16px !important;
  }
  .tc807-time-input {
    font-size: 16px !important;
    padding: 8px 10px !important;
  }
  .tc807-custom-button {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  .tc807-features-grid {
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .tc807-feature-card {
    padding: 20px 12px !important;
  }
  .tc807-feature-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }

  /* Analog Clock → max-width: 120px */
  .tc807-analog-clock {
    max-width: 120px !important;
    border-width: 6px !important;
    margin-bottom: 6px !important;
  }
  .tc807-analog-clock::before {
    top: 4px !important;
    left: 4px !important;
    right: 4px !important;
    bottom: 4px !important;
    border-width: 1px !important;
  }
  .tc807-hour-mark {
    width: 3% !important;
    height: 8% !important;
    transform-origin: 50% 75% !important;
    top: 10% !important;
  }
  .tc807-minute-mark {
    width: 1% !important;
    height: 6% !important;
    transform-origin: 50% 75% !important;
    top: 12% !important;
  }
  .tc807-clock-center {
    width: 6% !important;
    height: 6% !important;
  }
  .tc807-hour-hand {
    width: 5% !important;
    height: 25% !important;
    top: 45% !important;
    margin-left: -2.5% !important;
  }
  .tc807-minute-hand {
    width: 4% !important;
    height: 35% !important;
    top: 30% !important;
    margin-left: -2% !important;
  }
  .tc807-second-hand {
    width: 2% !important;
    height: 40% !important;
    top: 25% !important;
    margin-left: -1% !important;
  }
  .tc807-digital-time {
    font-size: 13px !important;
  }
  .tc807-stats-grid {
    gap: 6px !important;
  }
  .tc807-stat-item {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
  .tc807-stat-label {
    font-size: 10px !important;
  }
  .tc807-stat-value {
    font-size: 12px !important;
  }
  .tc807-content-section {
    padding: 20px 16px !important;
  }
  .tc807-content-title {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }
  .tc807-content-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .tc807-content-card {
    padding: 16px 12px !important;
  }
  .tc807-content-card-title {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .tc807-content-text {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }
  .tc807-list-item {
    font-size: 12px !important;
    padding-left: 20px !important;
  }
  .tc807-list-item::before {
    font-size: 13px !important;
  }
  .tc807-faq-section {
    margin-top: 24px !important;
  }
  .tc807-faq-title {
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  .tc807-faq-grid {
    gap: 8px !important;
  }
  .tc807-faq-item {
    padding: 14px !important;
  }
  .tc807-faq-question {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
  .tc807-faq-answer {
    font-size: 12px !important;
  }
}

/*────────── ≤ 375px ──────────*/
@media (max-width: 375px) {
  .tc827-wrapper {
    padding: 12px 6px !important;
  }
  .tc807-header-card {
    padding: 20px 16px !important;
    margin-bottom: 12px !important;
  }
  .tc807-main-title {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  .tc807-subtitle {
    font-size: 9px !important;
  }
  .tc807-countdown-card {
    padding: 20px 16px !important;
    margin-bottom: 12px !important;
  }
  .tc807-countdown-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-countdown-display {
    gap: 6px !important;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)) !important;
  }
  .tc807-time-unit {
    padding: 14px 8px !important;
  }
  .tc807-time-number {
    font-size: 20px !important;
  }
  .tc807-time-label {
    font-size: 9px !important;
  }
  .tc807-progress-section {
    margin-bottom: 16px !important;
  }
  .tc807-progress-info {
    font-size: 10px !important;
    margin-bottom: 8px !important;
  }
  .tc807-progress-bar-container {
    height: 6px !important;
  }
  .tc807-controls-grid {
    gap: 6px !important;
    margin-bottom: 16px !important;
  }
  .tc807-control-card {
    padding: 16px 12px !important;
  }
  .tc807-control-title {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }
  .tc807-current-time {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  .tc807-timezone-select {
    font-size: 10px !important;
    padding: 8px 10px !important;
  }
  .tc807-custom-inputs {
    gap: 6px !important;
    margin-bottom: 12px !important;
  }
  .tc807-time-input {
    font-size: 14px !important;
    padding: 8px 10px !important;
  }
  .tc807-custom-button {
    font-size: 12px !important;
    padding: 8px 14px !important;
  }
  .tc807-features-grid {
    gap: 6px !important;
    margin-bottom: 16px !important;
  }
  .tc807-feature-card {
    padding: 16px 12px !important;
  }
  .tc807-feature-title {
    font-size: 14px !important;
    margin-bottom: 12px !important;
  }

  /* Analog Clock → max-width: 100px */
  .tc807-analog-clock {
    max-width: 100px !important;
    border-width: 5px !important;
    margin-bottom: 4px !important;
  }
  .tc807-analog-clock::before {
    top: 3px !important;
    left: 3px !important;
    right: 3px !important;
    bottom: 3px !important;
    border-width: 1px !important;
  }
  .tc807-hour-mark {
    width: 3% !important;
    height: 6% !important;
    transform-origin: 50% 75% !important;
    top: 10% !important;
  }
  .tc807-minute-mark {
    width: 0.8% !important;
    height: 5% !important;
    transform-origin: 50% 75% !important;
    top: 12% !important;
  }
  .tc807-clock-center {
    width: 6% !important;
    height: 6% !important;
  }
  .tc807-hour-hand {
    width: 5% !important;
    height: 25% !important;
    top: 45% !important;
    margin-left: -2.5% !important;
  }
  .tc807-minute-hand {
    width: 4% !important;
    height: 35% !important;
    top: 30% !important;
    margin-left: -2% !important;
  }
  .tc807-second-hand {
    width: 2% !important;
    height: 40% !important;
    top: 25% !important;
    margin-left: -1% !important;
  }
  .tc807-digital-time {
    font-size: 12px !important;
  }
  .tc807-stats-grid {
    gap: 4px !important;
  }
  .tc807-stat-item {
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
  .tc807-stat-label {
    font-size: 10px !important;
  }
  .tc807-stat-value {
    font-size: 12px !important;
  }
  .tc807-content-section {
    padding: 16px 12px !important;
  }
  .tc807-content-title {
    font-size: 18px !important;
    margin-bottom: 18px !important;
  }
  .tc807-content-grid {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-bottom: 18px !important;
  }
  .tc807-content-card {
    padding: 16px 12px !important;
  }
  .tc807-content-card-title {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }
  .tc807-content-text {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
  .tc807-list-item {
    font-size: 11px !important;
    padding-left: 20px !important;
  }
  .tc807-list-item::before {
    font-size: 12px !important;
  }
  .tc807-faq-section {
    margin-top: 20px !important;
  }
  .tc807-faq-title {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .tc807-faq-grid {
    gap: 6px !important;
  }
  .tc807-faq-item {
    padding: 12px !important;
  }
  .tc807-faq-question {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }
  .tc807-faq-answer {
    font-size: 11px !important;
  }
}

