 .about-icons {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 2rem;
 }

 .icon-box {
     background: #fff;
     border-radius: 12px;
     text-align: center;
     padding: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .icon-box:hover {
     transform: translateY(-5px);
 }

 .icon-circle {
     width: 70px;
     height: 70px;
     margin: 0 auto 1rem auto;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.8rem;
 }

 .icon-box h3 {
     font-size: 1.2rem;
     margin-bottom: 0.5rem;
     color: #333;
 }

 .icon-box p {
     font-size: 0.95rem;
     color: #555;
 }

 .about-tiles {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
 }

 .tile {
     background: #fff;
     border-radius: 12px;
     padding: 2rem 1.5rem;
     text-align: center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .tile:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
 }

 .tile i {
     display: inline-block;
     width: 64px;
     height: 64px;
     line-height: 64px;
     font-size: 1.8rem;
     border-radius: 50%;
     background-color: #f0f4f8;
     margin-bottom: 1rem;
 }

 .tile h2 {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: #333;
 }

 .tile p {
     font-size: 0.95rem;
     color: #555;
 }

 .about-timeline {
     position: relative;
 }

 .timeline-container {
     position: relative;
     max-width: 900px;
     margin: 0 auto;
     padding: 1rem 0;
 }

 .timeline-item {
     display: flex;
     align-items: center;
     justify-content: flex-start;
     margin-bottom: 2rem;
     width: 100%;
 }

 .timeline-item.left {
     flex-direction: row;
 }

 .timeline-item.right {
     flex-direction: row-reverse;
 }

 .timeline-icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     color: #fff;
     font-size: 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 .timeline-content {
     background: #f8f9fa;
     padding: 1rem 1.2rem;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     max-width: 500px;
     margin: 0 1rem;
 }

 .timeline-content h4 {
     margin: 0 0 0.5rem;
     font-size: 1.2rem;
     color: #333;
 }

 .timeline-content p {
     margin: 0;
     font-size: 0.95rem;
     color: #555;
 }

 .section-subtitle {
     font-size: 2rem;
     font-weight: 700;
     color: #2d465e;
     /* Deep blue to match your brand */
     position: relative;
     margin-bottom: 2rem;
 }

 .section-subtitle::after {
     content: "";
     display: block;
     width: 60px;
     height: 3px;
     background-color: #007bff;
     /* Accent blue */
     margin: 0.5rem auto 0;
     border-radius: 2px;
 }

 .about-quote {
     background: #eef6ff;
     padding: 1rem;
     border-left: 5px solid #007bff;
     font-style: italic;
     margin-bottom: 2rem;
 }

 .about-quote cite {
     display: block;
     margin-top: 1rem;
     font-weight: bold;
     color: #007bff;
 }