.page-header {
    background: url('../assets/images/hero/exal-factory.jpg') no-repeat center center/cover;
    height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 34, 68, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    color: #ccc;
}

.breadcrumb a {
    color: #fff;
    font-weight: 500;
}

.about-intro-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text h2 {
    color: #004085;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #f39c12;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.infrastructure-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.infra-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.infra-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #004085;
}

.infra-card i {
    font-size: 40px;
    color: #004085;
    margin-bottom: 20px;
}

.mission-section {
    padding: 80px 0;
    text-align: center;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    border: 2px dashed #004085;
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #004085;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    gap: 10px;
}

.cta-btn:hover {
    background-color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .about-intro-wrapper {
        flex-direction: column;
    }
}