/* Page Background */
.company-profile-section {
    background: linear-gradient(to bottom, #f4f8fc, #ffffff);
    padding: 15px 0;
}

/* Header */
.profile-header {
    text-align: center;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 52px;
    font-weight: 700;
    color: #002b8f;
    margin-bottom: 10px;
}

.title-line {
    width: 100px;
    height: 4px;
    background: #d4af37;
    margin: 10px auto;
}

.profile-subtitle {
    font-size: 18px;
    color: #666;
}

/* Banner */
.company-banner {
    width: 100%;
    margin-bottom: 0;
}

.profile-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* About Card */
.about-company {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.about-company h2 {
    color: #002b8f;
    border-left: 5px solid #d4af37;
    padding-left: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-company p {
    color: #555;
    line-height: 2;
    font-size: 16px;
    text-align: justify;
}

/* Highlights */
.highlight-box {
    background: #002b8f;
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: #d4af37;
    transform: translateY(-8px);
}

.highlight-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-box p {
    margin: 0;
    font-size: 14px;
}
