Changed around line 1
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: #333;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,');
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
+ }
+
+ .timeline-container {
+ position: relative;
+ padding: 2rem;
+ }
+
+ .timeline {
+ position: relative;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .timeline::after {
+ content: '';
+ position: absolute;
+ width: 6px;
+ background: #1a237e;
+ top: 0;
+ bottom: 0;
+ left: 50%;
+ margin-left: -3px;
+ border-radius: 3px;
+ box-shadow: 0 0 10px rgba(26,35,126,0.5);
+ }
+
+ .timeline-item {
+ padding: 10px 40px;
+ position: relative;
+ width: 50%;
+ animation: fadeIn 0.5s ease-in-out;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ .left {
+ left: 0;
+ }
+
+ .right {
+ left: 50%;
+ }
+
+ .timeline-item::after {
+ content: '';
+ position: absolute;
+ width: 25px;
+ height: 25px;
+ background: #fff;
+ border: 4px solid #1a237e;
+ top: 15px;
+ border-radius: 50%;
+ z-index: 1;
+ }
+
+ .left::after {
+ right: -17px;
+ }
+
+ .right::after {
+ left: -17px;
+ }
+
+ .timeline-item::before {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 0;
+ border-style: solid;
+ }
+
+ .left::before {
+ right: 30px;
+ border-width: 10px 0 10px 10px;
+ border-color: transparent transparent transparent #fff;
+ }
+
+ .right::before {
+ left: 30px;
+ border-width: 10px 10px 10px 0;
+ border-color: transparent #fff transparent transparent;
+ }
+
+ .timeline-item span {
+ font-weight: bold;
+ color: #1a237e;
+ font-size: 1.2rem;
+ }
+
+ .timeline-item h2 {
+ margin: 10px 0;
+ color: #1a237e;
+ }
+
+ .timeline-item div {
+ padding: 20px;
+ background: white;
+ border-radius: 6px;
+ box-shadow: 0 3px 10px rgba(0,0,0,0.2);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: #1a237e;
+ color: white;
+ }
+
+ @media screen and (max-width: 768px) {
+ .timeline::after {
+ left: 31px;
+ }
+
+ .timeline-item {
+ width: 100%;
+ padding-left: 70px;
+ padding-right: 25px;
+ }
+
+ .timeline-item::before {
+ left: 60px;
+ border-width: 10px 10px 10px 0;
+ border-color: transparent #fff transparent transparent;
+ }
+
+ .timeline-item::after {
+ left: 15px;
+ }
+
+ .right {
+ left: 0%;
+ }
+ }