.dicodi-icon {
    width: 56px;
    height: 56px;
    background: #0b3a7a;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
    font-size: 0;
}

.description{
    margin-top: 10px;
    border: 1px solid #94adc8;
    padding: 2rem;
}

.dicodi-icon::after {
    content: "";
    position: absolute;
    inset: 12px;
    background: #ffffff;
    border-radius: 50%;
}

.cohort-description{
        padding: 10px;
}

.conclusion{
    padding: 2rem;
}

.reseachers-title {
    background-color: var(--secondary);
    color: white;
    border-radius: 100px;
    padding: 10px;
    width: 100%;
    font-size: 1.25rem !important;
}

.reseachers-title h1, .reseachers-title h2, .reseachers-title h3 {
    font-size: 1.5rem !important;    
    margin-left: 40px;    
    margin-bottom: 0;
}

.cohort-list {
    gap: 15px;
    padding: 0.75rem;
}

.cohort-publication {
    border: 1px solid #94adc8;
    padding: 20px;
}

.cohort-publication p img{
    width: 30px !important;
    height: 30px !important;
    border-radius: 7px;
}

.cohort-publication .img{
    width: unset !important;
    height: unset !important;
}

.dicodi-section .container{
        padding-top: 10px;
}

.study-design {
    margin-top: 10px;
    border: 1px solid #94adc8;
    padding: 20px;
}

/* DICODI Study Design Section */
.dicodi-section {
    margin-bottom: 3rem;
    overflow: hidden;
    margin-top: 20px;
}

.dicodi-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 9999px;
    position: relative;
}

.dicodi-content {
    padding: 2rem;
    display: flex;
    margin-top: 15px;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid #94adc8;
}

.gi-section {
    display: grid; /* Enables grid layout for the container */
    grid-template-columns: 1fr 1fr; /* Creates two columns of equal width */
    gap: 20px;
}

.gi-card {
    padding: 2rem;
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid #94adc8;
}

    .gi-card img {
        width: 100% !important;
        height: 100% !important;
    }

.gi-title {
    color: var(--secondary);
}

.gi-card h4 {
    color: var(--secondary);
    font-size: 1.275rem;
}

.gi-card strong {
    font-weight: bold;
}

.study-design-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 135px;
}

.study-design-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.study-design-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .study-design-icon img {
        width: 80px;
        height: 80px;
    }

.cards-section {
    display: flex;
    gap: 1.5rem;
    flex-grow: 1;
}

.info-card {
    flex: 1;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 140px;
    justify-content: center;
}

.card-1 {
    background: #f3e8ff;
}

.card-2 {
    background: #fef3c7;
}

.card-3 {
    background: #fef9c3;
}


.card-icon img {
    width: 75px;
    height: 70px;
}

.card-text {
    font-weight: normal;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

/* Responsive adjustments for DICODI section */
@media (max-width: 768px) {
    .cohort-publication .img{
        width: 100% !important;
        height: 100% !important;
    }
    .dicodi-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cards-section {
        flex-direction: column;
    }

    .info-card {
        min-height: auto;
    }

    .gi-section {
        grid-template-columns: 1fr;
    }
    .reseachers-title h1, .reseachers-title h2, .reseachers-title h3{
        font-size: 1rem !important;
    }
}