.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #D72638, #a61d2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.infrastructure-box {
    background: #fff;
    border: 2px solid rgba(215, 38, 56, 0.2);
    border-left: 5px solid #D72638;
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.infrastructure-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #e73949;
}

.infrastructure-box p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 768px) {
  .about-text h2 {
    font-size: 24px;
    line-height: 1.3;
    word-break: break-word; /* Optional: to avoid overflow */
    text-align: center;
  }

    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}