
    :root {
        --primary-blue: #0d47a1;
        --light-blue: #42a5f5;
        --medium-blue: #1976d2;
        --lightest-blue: #bbdefb;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .top-section {
        background-color: #f5f5f5;
    }
    
    .values-section, .vision-section, .mission-section {
        background-color: var(--primary-blue);
        color: white;
    }

    @media (min-width: 1200px) {
        .values-section .col-lg-3{
      width: 14%;
         } 
        }

        @media (max-width: 768px) {
            .values-section .col-lg-3{
          padding-right: calc(var(--bs-gutter-x) * 4.5);
          padding-left: calc(var(--bs-gutter-x) * 4.5);
             } 
            }

    @media (max-width: 768px) {
        .value-card {
          height: 64px;
             } 
            }

            @media (min-width: 1200px) {
                .value-card {
                    height: 100px;
                     } 
                    }

    .values-section h2{
      color: white;
    }

    .values-section h5{
        font-size: 1rem;
        margin: .5rem;
      }

    .value-card h5{
        color: white;
    }
    
    .b1{
        background-color: #008cff;
    }
    .b2{
        background-color: var(--light-blue);
    }

    .value-card {
        
        color: white;
        /* height: 100px; */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .mission-item {
        background-color: white;
        color: var(--primary-blue);
        border-radius: 5px;
        padding: 10px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    
    .mission-icon {
        background-color: var(--light-blue);
        color: white;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    
    .logo-container {
        text-align: center;
    }
    
    .logo {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        margin-bottom: -20px;
    }
    
    .company-name {
        color: var(--primary-blue);
        font-weight: bold;
        margin-top: 10px;
    }
    
    .wave-divider {
        height: 50px;
        background-color: var(--light-blue);
        border-radius: 0 0 50% 50% / 100% 100% 0 0;
        margin-bottom: -1px;
    }
    
    h2 {
        font-weight: bold;
        margin-bottom: 20px;
        font-size: 2.5rem;
    }
    
    .section-description {
        margin-bottom: 30px;
    }

    .karir{
        background-color: #f8f9fa;
    }

    .tab-button {
            padding: 10px 20px;
            background: none;
            border: none;
            color: #6c757d;
            font-weight: 500;
            position: relative;
        }
        
        .tab-button.active {
            color: #0d6efd;
            font-weight: 600;
        }
        
        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            width: 60%;
            height: 2px;
            background-color: #0d6efd;
        }
        
        .job-card {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .job-title {
            color: #0d6efd;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .job-location {
            color: #6c757d;
            font-size: 14px;
        }
        
        .badge-container {
            display: flex;
            align-items: center;
            margin: 10px 0;
        }
        
        .badge-icon {
            width: 24px;
            height: 24px;
            background-color: #0d6efd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
        }
        
        .badge-text {
            font-size: 14px;
        }
        
        .btn-detail {
            background-color: #0d6efd;
            color: white;
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 500;
        }
        
        .btn-more {
            background-color: transparent;
            color: #0d6efd;
            border: 1px solid #0d6efd;
            border-radius: 50px;
            padding: 8px 24px;
            font-weight: 500;
            margin-top: 20px;
        }