/* CSS Charcounter*/
    .cc_toless {
      color:  red;
      font-weight: 700;
  }
  
        .timeline-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            margin: 40px auto;
            padding: 40px 0;
        }

        .timeline-container::after {
            content: "";
            display: table;
            clear: both;
        }

        .timeline-entry {
            width: 42%;
            background: #fdfdfd;
            padding: 20px;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            margin-bottom: 60px;
        }

        .timeline-entry.left {
            float: left;
            clear: both;
            margin-right: 5%;
            margin-left: 2%;
        }

        .timeline-entry.right {
            float: right;
            clear: both;
            margin-left: 5%;
            margin-right: 2%;
        }

        .timeline-entry.left,
        .timeline-entry.right {
            position: relative;
        }

        .timeline-dot {
            top: 37px;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            bottom: 0;
            background: #aaa;
            z-index: 0;
        }

        .timeline-entry.left .timeline-dot {
            left: 112%; 
            margin-left: 8px;
        }

        .timeline-entry.right .timeline-dot {
            left: -11.5%; 
            margin-left: -8px;
        }

        .timeline-dot {
            position: absolute;
            left: 100%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: #fff;
            border: 4px solid #555;
            border-radius: 50%;
            z-index: 2;
        }


        .timeline-header {
            font-weight: bold;
            font-size: 18px;
            background: #555;
            color: #fff;
            padding: 6px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .timeline-title {
            font-weight: bold;
            margin-bottom: 8px;
        }

        .timeline-description {
            font-size: 14px;
            line-height: 1.5;
        }
        