.elementor-870 .elementor-element.elementor-element-e753637{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3a18417 */:root {
    --primary-color: #005A9E;
    --secondary-color: #F0F8FF;
    --font-color: #333;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f9;
    color: var(--font-color);
    margin: 0;
    padding: 20px;
}

.main-header {
    text-align: center;
    margin-bottom: 40px;
}

.main-header h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 5px;
}

.main-header h2 {
    font-size: 1.1em;
    font-weight: 400;
    color: #555;
    margin-top: 0;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.kompetensi-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kompetensi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    align-items: center;
}

.card-header .no {
    font-size: 1.5em;
    font-weight: 700;
    margin-right: 15px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600; /* Disesuaikan dari h2 sebelumnya */
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    font-size: 1em;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600; /* Disesuaikan dari h3 sebelumnya */
}

.card-body p, .card-body ul {
    font-size: 0.9em;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.card-body ul {
    list-style-type: none;
    padding-left: 0;
}

.card-body li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.card-body li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.source-footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
}

.source-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.source-footer a:hover {
    text-decoration: underline;
}/* End custom CSS */