.title1 h4 {
  			text-align: center;
  			font-size: 28px!important;
  			margin-bottom: 30px;
  			font-weight: bold;
  			text-transform: uppercase;
  		}

  		.chart {
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  			margin-top: 20px;
  			animation: fadeInUp 1s ease;
  		}
  		.box {
  			border: 2px solid #7E1726;
  			padding: 5px 15px;
  			text-align: center;
  			font-size: 14px;
  			background-color: #ffffff;
  			border-radius: 12px;
  			min-width: 150px;
  			box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  			transition: all 0.3s ease-in-out;
  			font-weight: 600;
  			color: #333;
  		}
  		.box:hover {
  			transform: scale(1.05);
  			background-color: #7E1726;
  			color: #fff;
  			box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  		}
  		.connector {
  			height: 20px;
  			width: 2px;
  			background: #7E1726;
  		}
  		.row2 {
  			display: flex;
  			justify-content: center;
  			flex-wrap: wrap;
  			margin-top: 15px;
  			gap: 30px;
  		}
  		.branch {
  			display: flex;
  			flex-direction: column;
  			align-items: center;
  		}
  		.bridge {
  			position: relative;
  			height: 20px;
  			width: 100%;
  			display: flex;
  			justify-content: space-between;
  			align-items: flex-end;
  			margin-top: 8px;
  		}
  		.bridge::before, .bridge::after {
  			content: "";
  			height: 2px;
  			background: #7E1726;
  			flex: 1;
  		}
  		.bridge span {
  			height: 20px;
  			width: 2px;
  			background: #7E1726;
  		}
  		.section-boxes {
  			display: grid;
  			grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  			gap: 15px 25px;
  			justify-content: center;
  			margin-top: 20px;
  			animation: fadeIn 1.5s ease;
  			width: 100%;
  			max-width: 1000px;
  		}
  		.section-boxes .box {
  			background: #006c97;
  			border-color: #26bf00;
  			color: #fff;
  			font-weight: bold;
  		}
  		.section-boxes .box:hover {
  			background: #004a6e;
  		}
  		@keyframes fadeInUp {
  			0% {
  				opacity: 0;
  				transform: translateY(20px);
  			}
  			100% {
  				opacity: 1;
  				transform: translateY(0);
  			}
  		}
  		@keyframes fadeIn {
  			from { opacity: 0; }
  			to { opacity: 1; }
  		}